/* Modern Lazy Tabs Sidebar Design - Elegant UI */

.lazy-tabs-container {
    display: flex;
    flex-direction: row;
    gap: 24px;
    background: linear-gradient(135deg, #0f172a, #1e293b);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}
.lazy-tab-link,
.lazy-tab-link:hover,
.lazy-tab-link:focus,
.lazy-tab-link:active {
    text-decoration: none !important;
}
.lazy-tabs-content {
    width: 100%;
}

.lazy-tabs-nav {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 200px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.lazy-tab-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.04);
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    border: 1px solid transparent;
}

.lazy-tab-link .tab-icon {
    font-size: 16px;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: inherit;
}

.lazy-tab-link .tab-title {
    font-size: 15px;
}

.lazy-tab-link:hover {
    background: rgba(255, 255, 255, 0.07);
    color: #ffffff;
    border: 1px solid #334155;
}

.lazy-tab-link.active {
    background: #FBAE17;
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.4);
}

.lazy-tab-content {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 16px;
    color: #e2e8f0;
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

/* Mobile Responsive - Bottom bar layout */
@media (max-width: 768px) {
    .lazy-tabs-container {
        flex-direction: column;
        padding: 16px;
    }

    .lazy-tabs-nav {
        flex-direction: row;
        justify-content: space-around;
        background: rgba(30, 41, 59, 0.8);
        border-radius: 12px;
        padding: 10px;
        backdrop-filter: blur(6px);
    }

    .lazy-tab-link {
        flex-direction: column;
        gap: 6px;
        font-size: 12px;
        padding: 10px;
    }

    .lazy-tab-link .tab-icon {
        font-size: 18px;
    }

    .lazy-tab-content {
        padding-top: 20px;
    }
}
