@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    color-scheme: dark;
    --bg-base: #0b0c15;
    --bg-surface: rgba(20, 22, 39, 0.7);
    --bg-surface-hover: rgba(30, 32, 59, 0.95);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-color-active: rgba(147, 51, 234, 0.5);
    
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --accent-primary: #a855f7;
    --accent-primary-hover: #c084fc;
    
    --status-paid: #10b981;
    --status-paid-bg: rgba(16, 185, 129, 0.15);
    --status-awaiting: #f59e0b;
    --status-awaiting-bg: rgba(245, 158, 11, 0.15);
    --status-missing: #ef4444;
    --status-missing-bg: rgba(239, 68, 68, 0.15);
    
    --font-display: 'Outfit', sans-serif;
    --font-sans: 'Inter', sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    background-color: var(--bg-base);
    background-image: 
        radial-gradient(at 0% 0%, rgba(124, 58, 237, 0.08) 0, transparent 50%),
        radial-gradient(at 100% 100%, rgba(59, 130, 246, 0.08) 0, transparent 50%);
    background-attachment: fixed;
    color: var(--text-primary);
    font-family: var(--font-sans);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 50px;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Header & Navigation */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.logo-section h1 {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2rem;
    background: linear-gradient(to right, #e9d5ff, #a855f7, #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
}

.logo-section p {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.year-selector {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 4px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.year-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 8px 18px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

.year-btn.active {
    background: var(--accent-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(168, 85, 247, 0.35);
}

/* Dashboard Statistics */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: transparent;
}

.stat-card.paid::before { background: var(--status-paid); }
.stat-card.awaiting::before { background: var(--status-awaiting); }
.stat-card.missing::before { background: var(--status-missing); }
.stat-card.total::before { background: var(--accent-primary); }
.stat-card.count::before { background: #3b82f6; }
.stat-card.average-bookings::before { background: #06b6d4; }

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.stat-value {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.75rem;
    color: var(--text-primary);
}

.stat-subtext {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 6px;
}

/* Tabs Navigation */
.tabs-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1px;
}

.tab-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 12px 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
    text-decoration: none;
}

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

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

/* Filters & Search */
.controls-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.search-container {
    position: relative;
    flex-grow: 1;
    max-width: 450px;
}

.search-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 12px 16px 12px 40px;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.search-input:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.08);
    outline: none;
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.2);
}

.search-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

/* Filter Toggle Container */
.filter-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    padding: 10px 16px;
    border-radius: 12px;
    height: 46px;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
    white-space: nowrap;
    flex-shrink: 0;
}

.filter-toggle-container:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.filter-toggle-label {
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--text-secondary);
    user-select: none;
    font-family: var(--font-display);
    font-weight: 600;
}

.filter-toggle-input {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

/* Table Design */
.table-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    width: 100%;
}

.table-wrapper {
    overflow-x: auto;
    width: 100%;
}

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

#tab-content-bookings table {
    table-layout: fixed;
    min-width: 1130px;
    width: 100%;
}

#tab-content-bookings table th:nth-child(1),
#tab-content-bookings table td:nth-child(1) {
    width: 95px;
}

#tab-content-bookings table th:nth-child(2),
#tab-content-bookings table td:nth-child(2) {
    width: 140px;
}

#tab-content-bookings table th:nth-child(3),
#tab-content-bookings table td:nth-child(3) {
    width: 140px;
}

#tab-content-bookings table th:nth-child(4),
#tab-content-bookings table td:nth-child(4) {
    width: 130px;
}

#tab-content-bookings table th:nth-child(5),
#tab-content-bookings table td:nth-child(5) {
    width: 200px;
}

#tab-content-bookings table th:nth-child(6),
#tab-content-bookings table td:nth-child(6) {
    width: 200px;
}

#tab-content-bookings table th:nth-child(7),
#tab-content-bookings table td:nth-child(7) {
    width: 150px;
}

#tab-content-bookings table th:nth-child(8),
#tab-content-bookings table td:nth-child(8) {
    width: 75px;
    text-align: center;
}

th {
    background: rgba(255, 255, 255, 0.02);
    padding: 16px 20px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

td {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

tr:last-child td {
    border-bottom: none;
}

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

/* Suggestion Layouts */
.pdf-suggestion, .payment-suggestion {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.775rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.badge-paid {
    background: var(--status-paid-bg);
    color: var(--status-paid);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.badge-awaiting {
    background: var(--status-awaiting-bg);
    color: var(--status-awaiting);
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.badge-missing {
    background: var(--status-missing-bg);
    color: var(--status-missing);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Link Actions */
.pdf-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary-hover);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

.pdf-link:hover {
    color: #d8b4fe;
    text-decoration: underline;
}

.pdf-missing-action {
    color: var(--text-muted);
    font-style: italic;
    font-size: 0.85rem;
}

/* Hover Payment Card Tooltip */
.payment-cell {
    position: relative;
    cursor: pointer;
}

.payment-hover-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.payment-tooltip {
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 320px;
    background: var(--bg-surface-hover);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    backdrop-filter: blur(15px);
    pointer-events: none;
}

.payment-cell:hover .payment-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.payment-tooltip.tooltip-down {
    bottom: auto;
    top: 125%;
    transform: translateX(-50%) translateY(-10px);
}

.payment-cell:hover .payment-tooltip.tooltip-down {
    transform: translateX(-50%) translateY(0);
}

.tooltip-title {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--accent-primary-hover);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 8px;
    margin-bottom: 8px;
}

.tooltip-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.775rem;
}

.tooltip-row:last-child {
    margin-bottom: 0;
}

.tooltip-key {
    color: var(--text-secondary);
}

.tooltip-val {
    color: var(--text-primary);
    font-weight: 500;
    text-align: right;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary {
    background: var(--accent-primary);
    border-color: transparent;
    color: white;
}

.btn-primary:hover {
    background: var(--accent-primary-hover);
}

.btn-sm {
    padding: 4px 10px;
    font-size: 0.775rem;
    border-radius: 6px;
}

/* Modals */
.modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s;
}

.modal-backdrop.show {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #121424;
    border: 1px solid rgba(255, 255, 255, 0.12);
    width: 100%;
    max-width: 550px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    padding: 24px;
    transform: scale(0.95);
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-backdrop.show .modal {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
    margin-bottom: 20px;
}

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

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

.modal-close:hover {
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 18px;
}

.form-label {
    display: block;
    font-size: 0.825rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-input, .form-select {
    width: 100%;
    color-scheme: dark;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus {
    border-color: var(--accent-primary);
    outline: none;
}

.form-select {
    background-color: #121424 !important;
    color: var(--text-primary) !important;
}

.form-select option {
    background-color: #121424 !important;
    color: var(--text-primary) !important;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
    margin-top: 24px;
}

/* Empty States & Lists */
.empty-state {
    text-align: center;
    padding: 40px 20px;
    color: var(--text-secondary);
}

.empty-state p {
    margin-bottom: 16px;
}

.list-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.list-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-fast);
}

.list-item:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.list-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.list-item-sub {
    font-size: 0.775rem;
    color: var(--text-secondary);
}

/* Responsive details */
@media(max-width: 768px) {
    /* 1. Global Container Padding */
    .container {
        padding: 10px !important;
    }

    /* 2. Header and Logo section */
    header {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: stretch !important;
        padding: 15px 0 20px 0 !important;
        margin-bottom: 16px !important;
    }
    .logo-section {
        justify-content: center;
    }
    .logo-section h1 {
        font-size: 1.6rem !important;
    }
    .logo {
        height: 32px !important;
    }
    .header-actions {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .year-selector {
        width: 100% !important;
        justify-content: space-around !important;
        margin-top: 5px !important;
    }
    .year-btn {
        flex-grow: 1;
        text-align: center;
        padding: 6px 0 !important;
        font-size: 0.8rem !important;
    }
    
    /* 3. Horizontal Scrollable Tabs */
    .tabs-nav {
        overflow-x: auto !important;
        white-space: nowrap !important;
        flex-wrap: nowrap !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 4px !important;
        padding-bottom: 8px !important;
        margin-bottom: 15px !important;
    }
    .tab-btn {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
        flex-shrink: 0 !important;
    }

    /* 4. Statistics cards grid & values */
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        margin-bottom: 20px !important;
    }
    .stat-card {
        padding: 16px !important;
        border-radius: 12px !important;
    }
    .stat-value {
        font-size: 1.5rem !important;
    }
    .stat-label {
        font-size: 0.8rem !important;
    }

    /* 5. Controls search filters & buttons */
    .controls-row {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 10px !important;
        margin-bottom: 15px !important;
    }
    .search-container {
        width: 100% !important;
    }
    .search-input {
        width: 100% !important;
        font-size: 0.9rem !important;
        height: 40px !important;
    }
    .filter-toggle-container {
        width: 100% !important;
        justify-content: flex-start !important;
        margin-left: 0 !important;
    }
    .actions {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        width: 100% !important;
    }
    .actions .btn {
        flex-grow: 1 !important;
        text-align: center !important;
        font-size: 0.8rem !important;
        padding: 10px !important;
    }

    /* 6. Layout grid adjustments using generic attribute selector to stack columns */
    .tab-content > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    #acq-candidates-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .provider-selector {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    /* 7. Modal & Overlays */
    .modal {
        margin: 10px !important;
        max-width: calc(100% - 20px) !important;
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .modal-body {
        padding: 10px 0 !important;
    }
    .auth-overlay {
        align-items: flex-start !important;
        overflow-y: auto !important;
        padding: 15px 10px !important;
    }
    .auth-card {
        margin: 20px auto !important;
        padding: 20px !important;
        border-radius: 16px !important;
    }
}

/* Spinner Animation */
.spin {
    display: inline-block;
    animation: spin-anim 1.2s linear infinite;
}

@keyframes spin-anim {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-secondary);
}

.chart-toggle-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 6px 14px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.chart-toggle-btn:hover {
    color: var(--text-primary);
}

.chart-toggle-btn.active {
    background: var(--accent-primary) !important;
    color: white !important;
    box-shadow: 0 2px 6px rgba(168, 85, 247, 0.3);
}

/* Multi-User & Auth Styling */
.auth-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 12, 28, 0.85);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

.auth-card {
    width: 100%;
    max-width: 420px;
    padding: 32px;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.auth-header {
    text-align: center;
    margin-bottom: 24px;
}

.auth-header h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(to right, #f472b6, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.auth-toggle {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.auth-toggle a {
    color: var(--accent-primary-hover);
    text-decoration: none;
    font-weight: 600;
}

.auth-toggle a:hover {
    text-decoration: underline;
}

.error-text {
    font-size: 0.85rem;
    padding: 10px;
    border-radius: 8px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    margin-top: 15px;
}

/* Pricing Card */
.price-card {
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(168, 85, 247, 0.25);
    background: rgba(168, 85, 247, 0.05);
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.1);
}

.price-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-primary-hover);
    margin-bottom: 10px;
}

.price-val {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.price-features {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-features li i {
    color: var(--status-paid);
}

/* Upload Dropzone */
.upload-dropzone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: all 0.25s ease;
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.upload-dropzone i {
    font-size: 1.8rem;
    color: var(--accent-primary-hover);
    transition: transform 0.2s ease;
}

.upload-dropzone:hover {
    border-color: var(--accent-primary-hover);
    background: rgba(168, 85, 247, 0.04);
}

.upload-dropzone:hover i {
    transform: translateY(-3px);
}

.upload-dropzone.dragover {
    border-color: var(--status-paid);
    background: rgba(16, 185, 129, 0.05);
}

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

/* User Badge Settings Link Styling */
.user-badge {
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    transition: var(--transition-fast);
    text-decoration: none;
    user-select: none;
}

.user-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.user-badge.active {
    background: rgba(168, 85, 247, 0.15);
    border-color: var(--accent-primary);
    color: var(--accent-primary-hover);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

/* Provider Selector Buttons */
.provider-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    padding: 10px;
    border-radius: 8px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.provider-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.provider-btn.active {
    background: rgba(168, 85, 247, 0.15) !important;
    border-color: var(--accent-primary) !important;
    color: var(--accent-primary-hover) !important;
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}
