/* ═══════════════════════════════════════════════════════════
       DESIGN TOKENS — Light Mode (default)
    ═══════════════════════════════════════════════════════════ */
    :root {
        --brand:          #163C44;
        --brand-mid:      #1F5560;
        --brand-light:    #E3F0F2;
        --brand-xlight:   #F0F8F9;

        --bg-body:        #F2F5F7;
        --bg-surface:     #FFFFFF;
        --bg-raised:      #FFFFFF;
        --bg-subtle:      #F8FAFB;
        --bg-input:       #FFFFFF;

        --border:         #E2E8EC;
        --border-strong:  #C8D6DC;

        --text-primary:   #1A2E35;
        --text-secondary: #4A6572;
        --text-muted:     #8FA3AD;
        --text-inverse:   #FFFFFF;

        --danger:         #E53E3E;
        --danger-light:   #FFF5F5;
        --success:        #2D9E6B;
        --success-light:  #F0FDF6;
        --warning:        #D97706;
        --warning-light:  #FFFBEB;
        --info:           #2563EB;
        --info-light:     #EFF6FF;

        --shadow-sm:      0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
        --shadow-md:      0 4px 12px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
        --shadow-lg:      0 10px 30px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.06);
        --shadow-modal:   0 20px 60px rgba(0,0,0,0.20);

        --radius-sm:      6px;
        --radius-md:      8px;
        --radius-lg:      12px;
        --radius-xl:      16px;

        --transition:     all 0.18s cubic-bezier(0.4, 0, 0.2, 1);

        --sidebar-w:      220px;
        --header-h:       60px;
    }

    /* ═══════════════════════════════════════════════════════════
       DARK MODE TOKENS
    ═══════════════════════════════════════════════════════════ */
    [data-theme="dark"] {
        --brand:          #4DB6C8;
        --brand-mid:      #5EC8DA;
        --brand-light:    #0D2D34;
        --brand-xlight:   #0A2028;

        --bg-body:        #0D1117;
        --bg-surface:     #161B22;
        --bg-raised:      #1C2430;
        --bg-subtle:      #131920;
        --bg-input:       #1C2430;

        --border:         #2A3644;
        --border-strong:  #3A4A5C;

        --text-primary:   #E6EDF3;
        --text-secondary: #8BA3B5;
        --text-muted:     #4D6070;
        --text-inverse:   #0D1117;

        --danger:         #F87171;
        --danger-light:   #2D1515;
        --success:        #4ADE80;
        --success-light:  #0D2A1A;
        --warning:        #FCD34D;
        --warning-light:  #2A200A;
        --info:           #60A5FA;
        --info-light:     #0D1F3A;

        --shadow-sm:      0 1px 3px rgba(0,0,0,0.4);
        --shadow-md:      0 4px 12px rgba(0,0,0,0.5);
        --shadow-lg:      0 10px 30px rgba(0,0,0,0.6);
        --shadow-modal:   0 20px 60px rgba(0,0,0,0.7);
    }

    /* ═══════════════════════════════════════════════════════════
       RESET & BASE
    ═══════════════════════════════════════════════════════════ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

    body {
        font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
        background: var(--bg-body);
        color: var(--text-primary);
        line-height: 1.5;
        font-size: 14px;
        transition: background 0.3s, color 0.3s;
        -webkit-font-smoothing: antialiased;
    }

    /* ═══════════════════════════════════════════════════════════
       HEADER
    ═══════════════════════════════════════════════════════════ */
    .header {
        background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
        height: var(--header-h);
        padding: 0 20px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        box-shadow: 0 2px 12px rgba(0,0,0,0.18);
        position: sticky;
        top: 0;
        z-index: 100;
    }

    [data-theme="dark"] .header {
        background: linear-gradient(135deg, #0D2D34 0%, #0F3A44 100%);
        box-shadow: 0 2px 12px rgba(0,0,0,0.5);
    }

    .header-logo { display: flex; align-items: center; gap: 12px; }

    .logo-icon {
        width: 38px; height: 38px;
        background: rgba(255,255,255,0.92);
        border-radius: var(--radius-sm);
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
        box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .logo-text h1 { font-size: 17px; font-weight: 700; color: white; letter-spacing: -0.3px; }
    .logo-text p  { font-size: 9px; color: rgba(255,255,255,0.7); letter-spacing: 2px; text-transform: uppercase; }

    .header-user {
        display: flex; align-items: center; gap: 10px;
        position: relative;
    }

    /* ═══════════════════════════════════════════════════════════
       LAYOUT
    ═══════════════════════════════════════════════════════════ */
    .container {
        display: grid;
        grid-template-columns: var(--sidebar-w) 1fr;
        min-height: calc(100vh - var(--header-h));
    }

    /* ═══════════════════════════════════════════════════════════
       SIDEBAR
    ═══════════════════════════════════════════════════════════ */
    .sidebar {
        background: var(--bg-surface);
        border-right: 1px solid var(--border);
        padding: 20px 0 20px;
        overflow-y: auto;
        position: sticky;
        top: var(--header-h);
        height: calc(100vh - var(--header-h));
        transition: background 0.3s, border-color 0.3s;
    }

    .sidebar-section { padding: 0 12px; }

    .sidebar-title {
        font-size: 10px;
        font-weight: 700;
        color: var(--text-muted);
        margin: 0 0 10px 8px;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .menu { display: flex; flex-direction: column; gap: 2px; }

    .menu-item {
        padding: 9px 12px;
        font-size: 13px;
        font-weight: 500;
        color: var(--text-secondary);
        cursor: pointer;
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        gap: 8px;
        transition: var(--transition);
        border: 1px solid transparent;
        line-height: 1.3;
    }

    .menu-item:hover {
        background: var(--brand-light);
        color: var(--brand);
        border-color: transparent;
    }

    .menu-item.active {
        background: var(--brand-light);
        color: var(--brand);
        font-weight: 600;
        border-color: transparent;
        box-shadow: inset 3px 0 0 var(--brand);
    }

    [data-theme="dark"] .menu-item:hover,
    [data-theme="dark"] .menu-item.active {
        background: var(--brand-xlight);
        color: var(--brand);
    }

    /* ═══════════════════════════════════════════════════════════
       MAIN CONTENT
    ═══════════════════════════════════════════════════════════ */
    .main {
        padding: 28px;
        background: var(--bg-body);
        overflow-y: auto;
        min-height: calc(100vh - var(--header-h));
        transition: background 0.3s;
    }

    .page { display: none !important; }
    .page.active { display: block !important; }

    /* ═══════════════════════════════════════════════════════════
       CARDS
    ═══════════════════════════════════════════════════════════ */
    .card {
        background: var(--bg-surface);
        padding: 22px 24px;
        border-radius: var(--radius-lg);
        border: 1px solid var(--border);
        box-shadow: var(--shadow-sm);
        margin-bottom: 20px;
        transition: background 0.3s, border-color 0.3s;
    }

    .card-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 18px;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--border);
    }

    .card-title {
        font-size: 15px;
        font-weight: 700;
        margin: 0;
        color: var(--text-primary);
        letter-spacing: -0.2px;
    }

    /* ═══════════════════════════════════════════════════════════
       BUTTONS
    ═══════════════════════════════════════════════════════════ */
    .btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 9px 16px;
        border-radius: var(--radius-md);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        border: 1.5px solid transparent;
        transition: var(--transition);
        white-space: nowrap;
        line-height: 1.3;
        text-decoration: none;
    }

    .btn:active { transform: translateY(1px); }

    .btn-primary {
        background: var(--brand);
        color: white;
        border-color: var(--brand);
        box-shadow: 0 2px 6px rgba(22,60,68,0.25);
    }
    .btn-primary:hover {
        background: var(--brand-mid);
        border-color: var(--brand-mid);
        box-shadow: 0 4px 10px rgba(22,60,68,0.3);
        transform: translateY(-1px);
    }

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

    .btn-danger {
        background: var(--danger);
        color: white;
        border-color: var(--danger);
        box-shadow: 0 2px 6px rgba(229,62,62,0.25);
    }
    .btn-danger:hover {
        filter: brightness(1.08);
        box-shadow: 0 4px 10px rgba(229,62,62,0.3);
        transform: translateY(-1px);
    }

    .btn-success {
        background: var(--success);
        color: white;
        border-color: var(--success);
    }
    .btn-success:hover { filter: brightness(1.08); transform: translateY(-1px); }

    .btn-small { padding: 5px 11px; font-size: 12px; }
    .btn-xs    { padding: 3px 9px;  font-size: 11px; }

    /* ═══════════════════════════════════════════════════════════
       FORMS
    ═══════════════════════════════════════════════════════════ */
    .form-section { margin-bottom: 24px; }

    .form-section-title {
        font-size: 13px;
        font-weight: 700;
        color: var(--brand);
        margin-bottom: 14px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--brand-light);
    }

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

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-row.full { grid-template-columns: 1fr; }

    label {
        display: block;
        font-size: 12px;
        font-weight: 600;
        color: var(--text-secondary);
        margin-bottom: 6px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .required { color: var(--danger); }

    input[type="text"],
    input[type="date"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    textarea,
    select {
        width: 100%;
        padding: 9px 12px;
        background: var(--bg-input);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-md);
        font-size: 13px;
        font-family: inherit;
        color: var(--text-primary);
        transition: border-color 0.15s, box-shadow 0.15s, background 0.3s;
    }

    input:focus, textarea:focus, select:focus {
        outline: none;
        border-color: var(--brand);
        box-shadow: 0 0 0 3px rgba(22,60,68,0.12);
    }

    [data-theme="dark"] input:focus,
    [data-theme="dark"] textarea:focus,
    [data-theme="dark"] select:focus {
        box-shadow: 0 0 0 3px rgba(77,182,200,0.18);
    }

    input:disabled, textarea:disabled, select:disabled {
        background: var(--bg-subtle);
        color: var(--text-muted);
        cursor: not-allowed;
        opacity: 0.7;
    }

    select { cursor: pointer; }

    .form-hint { font-size: 11px; color: var(--text-muted); margin-top: 4px; }

    /* ═══════════════════════════════════════════════════════════
       MODAL
    ═══════════════════════════════════════════════════════════ */
    .modal-overlay {
        position: fixed; inset: 0;
        background: rgba(0,0,0,0.55);
        backdrop-filter: blur(3px);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 2000;
        padding: 20px;
    }
    .modal-overlay.active { display: flex; }

    .modal {
        background: var(--bg-surface);
        border-radius: var(--radius-xl);
        box-shadow: var(--shadow-modal);
        width: 100%;
        max-width: 900px;
        max-height: 90vh;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
        border: 1px solid var(--border);
        animation: modal-in 0.2s cubic-bezier(0.34,1.56,0.64,1);
    }

    @keyframes modal-in {
        from { opacity: 0; transform: scale(0.96) translateY(8px); }
        to   { opacity: 1; transform: scale(1) translateY(0); }
    }

    .modal-header {
        background: linear-gradient(135deg, var(--brand) 0%, var(--brand-mid) 100%);
        padding: 20px 24px;
        border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: sticky; top: 0;
        flex-shrink: 0;
    }

    [data-theme="dark"] .modal-header {
        background: linear-gradient(135deg, #0D2D34 0%, #0F3A44 100%);
    }

    .modal-header h2 { margin: 0; color: white; font-size: 18px; font-weight: 700; }

    .modal-close {
        background: rgba(255,255,255,0.12);
        border: none;
        color: white;
        font-size: 20px;
        cursor: pointer;
        border-radius: var(--radius-md);
        width: 32px; height: 32px;
        display: flex; align-items: center; justify-content: center;
        transition: var(--transition);
    }
    .modal-close:hover { background: rgba(255,255,255,0.22); }

    .modal-body { padding: 28px; overflow-y: auto; flex: 1; }

    .modal-footer {
        padding: 16px 28px;
        border-top: 1px solid var(--border);
        display: flex;
        justify-content: flex-end;
        gap: 10px;
        background: var(--bg-subtle);
        border-radius: 0 0 var(--radius-xl) var(--radius-xl);
        position: sticky; bottom: 0;
        flex-shrink: 0;
    }

    /* ═══════════════════════════════════════════════════════════
       TABLES
    ═══════════════════════════════════════════════════════════ */
    .servicos-container {
        background: var(--bg-subtle);
        padding: 16px;
        border-radius: var(--radius-md);
        margin-bottom: 16px;
        border: 1px solid var(--border);
    }

    .servicos-input-row {
        display: grid;
        grid-template-columns: 1fr 2fr 1fr 1fr 1fr auto;
        gap: 10px;
        margin-bottom: 14px;
        align-items: flex-end;
    }

    .servicos-tabela {
        width: 100%;
        border-collapse: collapse;
        background: var(--bg-surface);
        border-radius: var(--radius-md);
        overflow: hidden;
        border: 1px solid var(--border);
    }

    .servicos-tabela thead { background: var(--brand-light); }

    .servicos-tabela th {
        padding: 11px 12px;
        text-align: left;
        font-weight: 700;
        color: var(--brand);
        border-bottom: 1px solid var(--border);
        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }

    .servicos-tabela td {
        padding: 11px 12px;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
        color: var(--text-primary);
    }

    .servicos-tabela tbody tr:hover { background: var(--bg-subtle); }

    .servicos-tabela .total-row {
        background: var(--brand-light);
        font-weight: 700;
        color: var(--brand);
    }
    .servicos-tabela .total-row td { padding: 12px; }

    /* ═══════════════════════════════════════════════════════════
       SUBFOLDER / MES CARDS
    ═══════════════════════════════════════════════════════════ */
    .subfolder-card {
        background: var(--bg-surface);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-lg);
        padding: 20px;
        cursor: pointer;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        gap: 10px;
        box-shadow: var(--shadow-sm);
    }

    .subfolder-card:hover {
        border-color: var(--brand);
        box-shadow: var(--shadow-md);
        transform: translateY(-2px);
    }

    .subfolder-icon { font-size: 30px; line-height: 1; }
    .subfolder-name { font-size: 15px; font-weight: 700; color: var(--text-primary); }
    .subfolder-description { font-size: 12px; color: var(--text-muted); }

    .meses-grid {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
        margin-top: 14px;
    }

    .mes-item {
        padding: 14px;
        background: var(--bg-surface);
        border: 1.5px solid var(--border);
        border-radius: var(--radius-md);
        cursor: pointer;
        transition: var(--transition);
        box-shadow: var(--shadow-sm);
    }

    .mes-item:hover {
        background: var(--brand-light);
        border-color: var(--brand);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }

    .mes-nome { font-weight: 700; color: var(--text-primary); font-size: 14px; }
    .mes-count { font-size: 12px; color: var(--text-muted); margin-top: 3px; }

    /* ═══════════════════════════════════════════════════════════
       FOTO UPLOAD
    ═══════════════════════════════════════════════════════════ */
    .foto-upload {
        background: var(--bg-subtle);
        padding: 14px;
        border-radius: var(--radius-md);
        border-left: 4px solid var(--brand);
        margin-bottom: 14px;
        border: 1px solid var(--border);
        border-left-width: 4px;
    }

    .foto-upload h4 { color: var(--brand); margin-bottom: 10px; font-size: 13px; }

    .foto-drop-zone {
        border: 2px dashed var(--border-strong);
        padding: 18px;
        text-align: center;
        border-radius: var(--radius-md);
        cursor: pointer;
        background: var(--bg-surface);
        transition: var(--transition);
    }

    .foto-drop-zone:hover {
        border-color: var(--brand);
        background: var(--brand-xlight);
    }

    .foto-drop-zone input[type="file"] { display: none; }
    .foto-icon { font-size: 28px; margin-bottom: 6px; }
    .foto-text { font-size: 12px; color: var(--text-muted); }
    .foto-nome { font-size: 12px; color: var(--brand); margin-top: 6px; font-weight: 600; }

    /* ═══════════════════════════════════════════════════════════
       ALERTS / BADGES
    ═══════════════════════════════════════════════════════════ */
    .alert {
        padding: 12px 14px;
        border-radius: var(--radius-md);
        margin-bottom: 14px;
        font-size: 13px;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }

    .alert-danger  { background: var(--danger-light);  border-left: 4px solid var(--danger);  color: var(--danger); }
    .alert-success { background: var(--success-light); border-left: 4px solid var(--success); color: var(--success); }
    .alert-warning { background: var(--warning-light); border-left: 4px solid var(--warning); color: var(--warning); }
    .alert-info    { background: var(--info-light);    border-left: 4px solid var(--info);    color: var(--info); }

    /* ═══════════════════════════════════════════════════════════
       THEME TOGGLE BUTTON
    ═══════════════════════════════════════════════════════════ */
    #theme-toggle {
        background: rgba(255,255,255,0.12);
        border: 1.5px solid rgba(255,255,255,0.2);
        color: white;
        border-radius: var(--radius-md);
        width: 36px; height: 36px;
        display: flex; align-items: center; justify-content: center;
        cursor: pointer;
        font-size: 16px;
        transition: var(--transition);
        flex-shrink: 0;
    }
    #theme-toggle:hover { background: rgba(255,255,255,0.22); transform: rotate(15deg); }

    /* ═══════════════════════════════════════════════════════════
       SCROLLBAR
    ═══════════════════════════════════════════════════════════ */
    ::-webkit-scrollbar { width: 6px; height: 6px; }
    ::-webkit-scrollbar-track { background: transparent; }
    ::-webkit-scrollbar-thumb {
        background: var(--border-strong);
        border-radius: 3px;
    }
    ::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

    /* ═══════════════════════════════════════════════════════════
       CONTEÚDO DINÂMICO (OS / Pagamentos)
    ═══════════════════════════════════════════════════════════ */
    #conteudo-dinamico.active {
        display: block !important;
    }

    /* ═══════════════════════════════════════════════════════════
       UTILITIES
    ═══════════════════════════════════════════════════════════ */
    .text-muted    { color: var(--text-muted); }
    .text-danger   { color: var(--danger); }
    .text-success  { color: var(--success); }
    .text-brand    { color: var(--brand); }
    .bg-surface    { background: var(--bg-surface); }
    .rounded       { border-radius: var(--radius-md); }
    .shadow        { box-shadow: var(--shadow-sm); }

    /* ═══════════════════════════════════════════════════════════
       DARK MODE — Dynamic content overrides
    ═══════════════════════════════════════════════════════════ */
    [data-theme="dark"] .card,
    [data-theme="dark"] .modal,
    [data-theme="dark"] input,
    [data-theme="dark"] select,
    [data-theme="dark"] textarea {
        background: var(--bg-surface);
        color: var(--text-primary);
        border-color: var(--border);
    }

    [data-theme="dark"] .sidebar {
        background: var(--bg-surface);
        border-color: var(--border);
    }

    [data-theme="dark"] .modal-footer {
        background: var(--bg-subtle);
        border-color: var(--border);
    }

    /* Override inline white/gray backgrounds in dynamic OS cards */
    [data-theme="dark"] [style*="background: white"],
    [data-theme="dark"] [style*="background:white"],
    [data-theme="dark"] [style*="background: #FFFFFF"],
    [data-theme="dark"] [style*="background:#FFFFFF"],
    [data-theme="dark"] [style*="background: #F9F9F9"],
    [data-theme="dark"] [style*="background:#F9F9F9"],
    [data-theme="dark"] [style*="background: #f9f9f9"] {
        background: var(--bg-surface) !important;
    }

    [data-theme="dark"] [style*="background: #FAFAFA"],
    [data-theme="dark"] [style*="background:#FAFAFA"],
    [data-theme="dark"] [style*="background: #fafafa"] {
        background: var(--bg-subtle) !important;
    }

    [data-theme="dark"] [style*="background: #F5F9FA"],
    [data-theme="dark"] [style*="background:#F5F5F5"],
    [data-theme="dark"] [style*="background: #F0F0F0"] {
        background: var(--bg-subtle) !important;
    }

    /* Text color overrides for dynamic content */
    [data-theme="dark"] [style*="color: #222"],
    [data-theme="dark"] [style*="color:#222"],
    [data-theme="dark"] [style*="color: #333"],
    [data-theme="dark"] [style*="color:#333"],
    [data-theme="dark"] [style*="color: #444"],
    [data-theme="dark"] [style*="color:#444"] {
        color: var(--text-primary) !important;
    }

    [data-theme="dark"] [style*="color: #555"],
    [data-theme="dark"] [style*="color:#555"],
    [data-theme="dark"] [style*="color: #666"],
    [data-theme="dark"] [style*="color:#666"],
    [data-theme="dark"] [style*="color: #777"],
    [data-theme="dark"] [style*="color: #888"],
    [data-theme="dark"] [style*="color: #999"] {
        color: var(--text-secondary) !important;
    }

    /* Border overrides */
    [data-theme="dark"] [style*="border: 1px solid #E0E0E0"],
    [data-theme="dark"] [style*="border:1px solid #E0E0E0"],
    [data-theme="dark"] [style*="border-bottom:1px solid #E0E0E0"],
    [data-theme="dark"] [style*="border-bottom: 1px solid #E0E0E0"],
    [data-theme="dark"] [style*="border-top:1px solid #E0E0E0"],
    [data-theme="dark"] [style*="border-bottom:1px solid #F0F0F0"],
    [data-theme="dark"] [style*="border-bottom: 1px solid #F5F5F5"] {
        border-color: var(--border) !important;
    }

    /* Input background in dark mode */
    [data-theme="dark"] input[type="text"],
    [data-theme="dark"] input[type="date"],
    [data-theme="dark"] input[type="number"],
    [data-theme="dark"] input[type="email"],
    [data-theme="dark"] input[type="password"],
    [data-theme="dark"] textarea,
    [data-theme="dark"] select {
        background: var(--bg-input) !important;
        color: var(--text-primary) !important;
        border-color: var(--border) !important;
    }

    /* Conteúdo dinâmico */
    [data-theme="dark"] #conteudo-dinamico {
        color: var(--text-primary);
    }

    /* Login screen dark */
    [data-theme="dark"] #login-screen {
        background: linear-gradient(135deg, #060B10 0%, #0D1117 50%, #0A1929 100%);
    }

    [data-theme="dark"] #painel-login,
    [data-theme="dark"] #painel-criar-conta {
        background: var(--bg-surface) !important;
        border: 1px solid var(--border);
    }

    /* Toast */
    #auth-toast { transition: opacity 0.3s; }