/* ============================= */
/* Channel Input */
/* ============================= */

/* Channel input inside channelForm only */
#channelForm input[type="text"] {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* ============================= */
/* Channel Info Table Styling */
/* ============================= */

table.channel-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

table.channel-info-table th,
table.channel-info-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

table.channel-info-table th {
    width: 25%;
    font-weight: 600;
    border: 1px solid #ddd;
}

/* Channel Thumbnail */
table.channel-info-table img.channel-thumb {
    max-width: 180px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    border: 2px solid #eee;
}

/* ============================= */
/* Description Box */
/* ============================= */

table.channel-info-table .desc {
    max-height: 180px;
    overflow-y: auto;
    background: var(--bs-custom-bg-fill-dark);
    padding: 10px;
    border-radius: 5px;
    line-height: 1.5;
}

/* ============================= */
/* Stats Badges */
/* ============================= */

.channel-stat {
    display: inline-block;
    background-color: var(--bs-custom-white-dark);
    color: var(--bs-custom-text-strong);
    border-radius: 50rem;
    padding: 6px 14px;
    font-size: 0.85rem;
    margin: 3px;
    white-space: nowrap;
}

/* ============================= */
/* Responsive Table */
/* ============================= */

.responsive-table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}


 @keyframes spin {
                    0% {
                        transform: rotate(0deg);
                    }

                    100% {
                        transform: rotate(360deg);
                    }
                }

                @keyframes pulse {

                    0%,
                    100% {
                        transform: scale(1);
                        opacity: 1;
                    }

                    50% {
                        transform: scale(1.05);
                        opacity: 0.85;
                    }
                }