/* style.css - Premium Modern Design System for BYC Data Center */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Vibrant Electric Youth Dark Theme */
    --bg-base: #080512;
    --bg-surface: rgba(20, 16, 36, 0.65);
    --bg-surface-solid: #141024;
    --bg-surface-hover: rgba(36, 28, 61, 0.8);
    
    --primary: #8b5cf6; /* Neon Purple/Indigo */
    --primary-glow: rgba(139, 92, 246, 0.15);
    --secondary: #06b6d4; /* Electric Cyan/Teal */
    --secondary-glow: rgba(6, 182, 212, 0.15);
    --warning: #f59e0b; /* Amber/Gold */
    --warning-glow: rgba(245, 158, 11, 0.15);
    --danger: #ff4a6b; /* Neon Rose/Pink Alert */
    --danger-glow: rgba(255, 74, 107, 0.15);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.18);
    
    --radius-sm: 0;
    --radius-md: 0;
    --radius-lg: 0;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    --sidebar-width: 16.25rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-body);
    min-height: 100vh;
    display: flex;
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(139, 92, 246, 0.09) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 0.5rem;
    height: 0.5rem;
}
::-webkit-scrollbar-track {
    background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Sidebar Styling */
.sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    background: var(--bg-surface-solid);
    border-right: 0.0625rem solid var(--border-color);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    top: 0;
    z-index: 100;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    color: white;
    box-shadow: 0 0.25rem 0.9375rem rgba(99, 102, 241, 0.35);
}

.logo-text {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    letter-spacing: -0.03125rem;
    background: linear-gradient(to right, #ffffff, #9ca3af);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-item a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    font-weight: 500;
    transition: var(--transition);
    border: 0.0625rem solid transparent;
}

.nav-item a:hover {
    color: var(--text-primary);
    background: var(--bg-surface-hover);
    border-color: var(--border-color);
}

.nav-item.active a {
    color: white;
    background: linear-gradient(90deg, var(--primary-glow), transparent);
    border-left: 0.25rem solid var(--primary);
    padding-left: 0.75rem;
    font-weight: 600;
}

.nav-icon {
    font-size: 1.2rem;
}

.sidebar-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 0.0625rem solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

/* Main Content Layout */
.main-wrapper {
    margin-left: var(--sidebar-width);
    flex-grow: 1;
    padding: 2.5rem 3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
}

.header-title h1 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 2rem;
    letter-spacing: -0.03125rem;
    margin-bottom: 0.25rem;
}

.header-title p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.header-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: 0.0625rem solid transparent;
    text-decoration: none;
}

.btn:active {
    transform: translateY(0) scale(0.96);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 0.25rem 0.875rem rgba(139, 92, 246, 0.35);
}

.btn-primary:hover {
    background: #7c3aed;
    transform: translateY(-0.125rem);
    box-shadow: 0 0.375rem 1.25rem rgba(139, 92, 246, 0.45);
}

.btn-secondary {
    background: var(--bg-surface-solid);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background: var(--border-hover);
    transform: translateY(-0.125rem);
}

.btn-success {
    background: var(--secondary);
    color: white;
    box-shadow: 0 0.25rem 0.875rem rgba(16, 185, 129, 0.3);
}

.btn-success:hover {
    background: #059669;
    transform: translateY(-0.125rem);
}

/* Glassmorphism Cards Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--bg-surface);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: 0.0625rem solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--card-glow, rgba(255,255,255,0.02)), transparent 50%);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-0.25rem);
    border-color: var(--border-hover);
    box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.3);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.stat-title {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

.stat-icon-wrapper {
    width: 2.625rem;
    height: 2.625rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    background: var(--icon-bg, rgba(255,255,255,0.05));
    color: var(--icon-color, white);
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    color: white;
}

.stat-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Theme variations for cards */
.card-membership {
    --card-glow: rgba(99, 102, 241, 0.1);
    --icon-bg: rgba(99, 102, 241, 0.15);
    --icon-color: var(--primary);
}
.card-committed {
    --card-glow: rgba(16, 185, 129, 0.1);
    --icon-bg: rgba(16, 185, 129, 0.15);
    --icon-color: var(--secondary);
}
.card-workforce {
    --card-glow: rgba(245, 158, 11, 0.1);
    --icon-bg: rgba(245, 158, 11, 0.15);
    --icon-color: var(--warning);
}
.card-noncommitted {
    --card-glow: rgba(239, 68, 68, 0.1);
    --icon-bg: rgba(239, 68, 68, 0.15);
    --icon-color: var(--danger);
}

/* Dashboard Content Grid */
.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.card-panel {
    background: var(--bg-surface);
    backdrop-filter: blur(1rem);
    -webkit-backdrop-filter: blur(1rem);
    border: 0.0625rem solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.75rem;
}

.panel-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 0.0625rem solid var(--border-color);
    padding-bottom: 0.75rem;
}

.panel-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
}

/* Custom CSS Charts & Progress Bars */
.attendance-chart-container {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-bar-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chart-label {
    width: 8.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.chart-bar-details {
    display: contents;
}

.chart-track {
    flex-grow: 1;
    height: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0;
    overflow: hidden;
}

.chart-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 0;
    transition: width 1s ease-in-out;
}

.chart-value {
    width: 3.125rem;
    text-align: right;
    font-size: 0.85rem;
    font-weight: 600;
}

.chart-count {
    font-size: 0.75rem;
    color: var(--text-muted);
    width: 5rem;
    text-align: right;
}

/* Activity & Member list styling */
.activity-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.02);
    border: 0.0625rem solid transparent;
    transition: var(--transition);
}

.activity-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
}

.activity-avatar {
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--bg-surface-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    border: 0.0625rem solid var(--border-color);
}

.activity-info {
    flex-grow: 1;
}

.activity-name {
    font-size: 0.9rem;
    font-weight: 600;
}

.activity-meta {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-success {
    background: var(--secondary-glow);
    color: var(--secondary);
    border: 0.0625rem solid rgba(16, 185, 129, 0.3);
}

.badge-warning {
    background: var(--warning-glow);
    color: var(--warning);
    border: 0.0625rem solid rgba(245, 158, 11, 0.3);
}

.badge-danger {
    background: var(--danger-glow);
    color: var(--danger);
    border: 0.0625rem solid rgba(239, 68, 68, 0.3);
}

/* Table Styling */
.table-container {
    overflow-x: auto;
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

th {
    padding: 1rem;
    border-bottom: 0.125rem solid var(--border-color);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.03125rem;
}

td {
    padding: 1rem;
    border-bottom: 0.0625rem solid var(--border-color);
    font-size: 0.9rem;
    color: var(--text-primary);
}

tr:hover td {
    background: rgba(255, 255, 255, 0.015);
}

/* Forms */
.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12.5rem, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 600;
}

input, select, textarea {
    background: var(--bg-surface-solid);
    border: 0.0625rem solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    color: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.125rem var(--primary-glow);
}

/* Filters & Search Toolbar */
.toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.search-input-wrapper {
    position: relative;
    flex-grow: 1;
    max-width: 25rem;
}

.search-input {
    width: 100%;
    padding-left: 2.5rem;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
}

.filter-group {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

/* Modal Popup Dialog */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(0.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: var(--bg-surface-solid);
    border: 0.0625rem solid var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 37.5rem;
    padding: 2.25rem;
    box-shadow: 0 1.25rem 3.125rem rgba(0,0,0,0.5);
    transform: scale(0.95) translateY(1.25rem);
    opacity: 0;
    transition: var(--transition);
    
    /* Support internal scrolling */
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.modal-container form {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
}

.modal-body {
    overflow-y: auto;
    flex: 1;
    min-height: 0;
    padding-right: 0.5rem;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
    margin-top: 1.5rem;
    border-top: 0.0625rem solid var(--border-color);
    padding-top: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 48rem) {
    .modal-overlay {
        align-items: stretch;
        justify-content: stretch;
        padding: 0;
    }
    .modal-container {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        border-radius: 0;
        border: none;
        padding: 1.5rem 1.25rem !important;
        margin: 0 !important;
    }
    .modal-footer {
        flex-direction: column-reverse;
        gap: 0.75rem;
        margin-top: 1rem;
        padding-top: 1rem;
    }
    .modal-footer button, .modal-footer .btn {
        width: 100% !important;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: white;
}

/* Attendance Checkbox List */
.attendance-list-container {
    max-height: 21.875rem;
    overflow-y: auto;
    border: 0.0625rem solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 0.5rem;
    background: rgba(0, 0, 0, 0.15);
}

.attendance-member-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    border-bottom: 0.0625rem solid rgba(255,255,255,0.03);
}

.attendance-member-row:last-child {
    border-bottom: none;
}

.attendance-sheet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}

.checkbox-custom {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-custom input {
    display: none;
}

.checkbox-indicator {
    width: 1.25rem;
    height: 1.25rem;
    border: 0.125rem solid var(--text-muted);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.checkbox-custom input:checked + .checkbox-indicator {
    background: var(--secondary);
    border-color: var(--secondary);
}

.checkbox-custom input:checked + .checkbox-indicator::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Mobile Navigation styles default (hidden on desktop) */
.mobile-header {
    display: none;
}
.mobile-drawer {
    display: none;
}

/* Responsive adjust */
@media (max-width: 62rem) {
    body {
        background-attachment: scroll;
        display: block !important;
        overflow-x: hidden !important;
    }
    
    html {
        overflow-x: hidden !important;
    }
    
    .sidebar {
        display: none !important;
    }
    
    .main-wrapper {
        margin-left: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1.5rem 1rem 2rem 1rem !important;
        padding-top: 5rem !important;
        overflow-x: hidden !important;
    }
    
    header {
        margin-bottom: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .dashboard-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    
    .dashboard-grid > * {
        min-width: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(13.75rem, 1fr)) !important;
        gap: 1rem;
    }
    
    .chart-bar-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.5rem !important;
    }
    
    .chart-label {
        width: 100% !important;
    }
    
    .chart-bar-details {
        display: flex !important;
        align-items: center !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .chart-count {
        width: 3.75rem !important;
    }
    
    .toolbar {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 1rem !important;
    }
    
    .search-input-wrapper {
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .filter-group {
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }
    
    .filter-group .form-group {
        width: 100% !important;
    }
    
    .filter-group select {
        width: 100% !important;
    }
    
    .filter-group button {
        width: 100% !important;
        justify-content: center !important;
    }
    
    /* Mobile Header style */
    .mobile-header {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 3.75rem;
        background: var(--bg-surface-solid);
        border-bottom: 0.0625rem solid var(--border-color);
        z-index: 999;
        align-items: center;
        justify-content: space-between;
        padding: 0 1.25rem;
        backdrop-filter: blur(0.625rem);
        -webkit-backdrop-filter: blur(0.625rem);
    }
    
    .mobile-menu-btn {
        background: none;
        border: none;
        color: var(--text-primary);
        cursor: pointer;
        padding: 0.25rem;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Mobile Drawer Menu style */
    .mobile-drawer {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: -18.125rem;
        width: 18.125rem;
        height: 100vh;
        background: #0f1422;
        border-right: 0.0625rem solid var(--border-color);
        z-index: 1000;
        padding: 1.5rem;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
        box-shadow: 0.625rem 0 1.875rem rgba(0, 0, 0, 0.5);
        visibility: hidden;
    }
    
    .mobile-drawer.active {
        left: 0;
        visibility: visible;
    }
    
    .mobile-drawer-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 0.0625rem solid var(--border-color);
        padding-bottom: 1rem;
    }
    
    /* Form grids and Modal styling on mobile */
    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .modal-container {
        width: 95% !important;
        padding: 1.5rem !important;
    }
    
    .modal-container form button {
        width: 100%;
    }
    
    /* Breakpoint classes for mobile phones specifically */
    @media (max-width: 37.5rem) {
        .hide-mobile {
            display: none !important;
        }
        .attendance-sheet-header {
            flex-direction: column;
            align-items: flex-start;
            gap: 0.5rem;
        }
        .stats-grid {
            grid-template-columns: 1fr !important;
        }
        .card-panel {
            padding: 1.25rem 1rem !important;
        }
        .main-wrapper {
            padding: 1.25rem 0.75rem 2rem 0.75rem !important;
            padding-top: 4.6875rem !important;
        }
    }
    
    /* Breakpoint classes for tablet */
    .hide-tablet {
        display: none !important;
    }
}

/* Settings Tabs Styling */
.settings-tabs {
    display: flex;
    gap: 1rem;
    border-bottom: 0.0625rem solid var(--border-color);
    margin-bottom: 2rem;
    padding-bottom: 0.125rem;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.settings-tabs::-webkit-scrollbar {
    display: none;
}

.settings-tab-btn {
    padding: 0.75rem 1.25rem;
    background: transparent;
    border: none;
    border-bottom: 0.125rem solid transparent;
    color: var(--text-secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.settings-tab-btn:hover {
    color: var(--text-primary);
}

.settings-tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.settings-tab-content {
    display: none;
}

.settings-tab-content.active {
    display: block;
}
