/* ===================================
   CUSTOM TABS STYLING
   =================================== */

.video-tabs-container {
    width: 100%;
    margin: 40px 0;
}

/* Tab Navigation */
.video-tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
    border-bottom: 3px solid #e9ecef;
    padding-bottom: 0;
}

.video-tab-btn {
    padding: 14px 24px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #6c757d;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    bottom: -3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.video-tab-btn:hover {
    color: #0066cc;
    background: #f8f9fa;
}

.video-tab-btn.active {
    color: #0066cc;
    border-bottom-color: #0066cc;
    background: transparent;
}

/* Tab Content */
.video-tabs-content {
    position: relative;
    min-height: 400px;
}

.video-tab-pane {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.video-tab-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive tabs */
@media (max-width: 768px) {
    .video-tabs-nav {
        flex-direction: column;
        border-bottom: none;
        gap: 0;
    }

    .video-tab-btn {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #e9ecef;
        border-left: 3px solid transparent;
        padding: 16px 20px;
        bottom: 0;
    }

    .video-tab-btn.active {
        border-bottom-color: #e9ecef;
        border-left-color: #0066cc;
        background: #f8f9fa;
    }
}