/* Input box */
/* Video URL input inside videoForm only */
#videoForm input[type="text"] {
    width: 70%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

/* Video Info Table Styling */
table.video-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    font-size: 14px;
}

table.video-info-table th,
table.video-info-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
    vertical-align: top;
}

table.video-info-table th {
    width: 25%;
    font-weight: 600;
    border: 1px solid #ddd;
}

table.video-info-table img.thumb {
    max-width: 280px;
    border-radius: 6px;
    display: inline-block; /* or block */
    vertical-align: middle; /* optional */
}

/* Description box */
table.video-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;
}

.tag-pill {
    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;
}
.tag-wrapper {
    white-space: normal;
    overflow-wrap: break-word;
}

.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;
                    }
                }
