/* ============================
   Global Reset & Base Styles
   ============================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    color-scheme: light dark;

    /* Surfaces */
    --color-bg-body:           #ffffff;
    --color-bg-dashboard:      #eef1f8;
    --color-bg-surface:        #ffffff;
    --color-bg-input:          #f8f9ff;
    --color-bg-header:         #ffffff;

    /* Text */
    --color-text-primary:      #1e293b;
    --color-text-secondary:    #475569;
    --color-text-muted:        #64748b;
    --color-text-accent:       #1a237e;
    --color-text-on-brand:     #ffffff;

    /* Borders & dividers */
    --color-border-soft:       #e2e8f0;
    --color-border-input:      #c5cae9;
    --color-border-input-focus:#3949ab;

    /* Brand gradients & accents */
    --color-brand-primary:     #1a237e;
    --color-brand-secondary:   #3949ab;
    --color-brand-tertiary:    #283593;
    --color-brand-deep:        #0d1b5e;

    /* Shadows */
    --shadow-focus:            0 0 0 3px rgba(57, 73, 171, 0.12);
    --shadow-header:           0 2px 10px rgba(26, 35, 126, 0.08);
    --shadow-card-hover:       0 4px 16px rgba(26, 35, 126, 0.10);

    /* Error palette */
    --color-error-bg:          #fef2f2;
    --color-error-border:      #fecaca;
    --color-error-text:        #991b1b;
    --color-error-inline:      #dc2626;

    /* Vulnerability tag pairs (background, text) */
    --tag-sqli-bg:    #fef9c3;  --tag-sqli-fg:    #854d0e;
    --tag-xss-bg:     #fee2e2;  --tag-xss-fg:     #991b1b;
    --tag-session-bg: #f3e8ff;  --tag-session-fg: #6b21a8;
    --tag-brute-bg:   #ffedd5;  --tag-brute-fg:   #9a3412;
    --tag-crypto-bg:  #dcfce7;  --tag-crypto-fg:  #166534;
    --tag-exposed-bg: #dbeafe;  --tag-exposed-fg: #1e40af;
    --tag-csrf-bg:    #fce7f3;  --tag-csrf-fg:    #9d174d;

    /* Step cards (dashboard) */
    --color-step-bg:      #1a237e;
    --color-step-text:    #ffffff;
    --color-step-muted:   rgba(255, 255, 255, 0.85);
    --color-step-badge:   rgba(255, 255, 255, 0.2);
}

:root[data-theme="dark"] {
    /* Surfaces */
    --color-bg-body:           #0f172a;
    --color-bg-dashboard:      #0b1220;
    --color-bg-surface:        #1e293b;
    --color-bg-input:          #111827;
    --color-bg-header:         #0b1220;

    /* Text */
    --color-text-primary:      #e2e8f0;
    --color-text-secondary:    #cbd5e1;
    --color-text-muted:        #94a3b8;
    --color-text-accent:       #a5b4fc;
    --color-text-on-brand:     #ffffff;

    /* Borders & dividers */
    --color-border-soft:       #1f2937;
    --color-border-input:      #334155;
    --color-border-input-focus:#a5b4fc;

    /* Brand gradients & accents */
    --color-brand-primary:     #3949ab;
    --color-brand-secondary:   #5c6bc0;
    --color-brand-tertiary:    #283593;
    --color-brand-deep:        #1a237e;

    /* Shadows */
    --shadow-focus:            0 0 0 3px rgba(165, 180, 252, 0.25);
    --shadow-header:           0 2px 10px rgba(0, 0, 0, 0.45);
    --shadow-card-hover:       0 4px 16px rgba(0, 0, 0, 0.50);

    /* Error palette */
    --color-error-bg:          #3f1d1d;
    --color-error-border:      #7f1d1d;
    --color-error-text:        #fecaca;
    --color-error-inline:      #fca5a5;

    /* Vulnerability tag pairs */
    --tag-sqli-bg:    #3a2e0a;  --tag-sqli-fg:    #facc15;
    --tag-xss-bg:     #3a1414;  --tag-xss-fg:     #fca5a5;
    --tag-session-bg: #2e1a4d;  --tag-session-fg: #d8b4fe;
    --tag-brute-bg:   #3a2210;  --tag-brute-fg:   #fdba74;
    --tag-crypto-bg:  #102a18;  --tag-crypto-fg:  #86efac;
    --tag-exposed-bg: #102036;  --tag-exposed-fg: #93c5fd;
    --tag-csrf-bg:    #3a1432;  --tag-csrf-fg:    #f9a8d4;

    /* Step cards */
    --color-step-bg:      #1a237e;
    --color-step-text:    #ffffff;
    --color-step-muted:   rgba(255, 255, 255, 0.78);
    --color-step-badge:   rgba(255, 255, 255, 0.18);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    background: var(--color-bg-body);
    color: var(--color-text-primary);
    line-height: 1.6;
}

a {
    color: var(--color-text-accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ============================
   Shared Header
   ============================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: var(--color-bg-header);
    border-bottom: 1px solid var(--color-border-soft);
    box-shadow: var(--shadow-header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    z-index: 1000;
}

.header-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-accent);
}

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

.header-logo {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 12px;
    background: transparent;
    border: 1px solid var(--color-border-soft);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--color-text-accent);
    cursor: pointer;
    transition: background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.theme-toggle:hover {
    background: var(--color-bg-input);
    border-color: var(--color-border-input);
}

.theme-toggle:focus-visible {
    outline: none;
    border-color: var(--color-border-input-focus);
    box-shadow: var(--shadow-focus);
}

.theme-toggle .theme-toggle-icon {
    pointer-events: none;
}

/* ============================
   Auth Pages (Login / Signup)
   ============================ */
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
}

/* Left Panel */
.auth-left {
    background: linear-gradient(135deg, var(--color-brand-deep) 0%, var(--color-brand-primary) 50%, var(--color-brand-tertiary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 48px 48px;
    position: relative;
    overflow: hidden;
}

.auth-left-content {
    position: relative;
    z-index: 2;
    max-width: 480px;
}

/* Decorative circles */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.07);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -60px;
    right: -80px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: 80px;
    left: -50px;
}

.circle-3 {
    width: 150px;
    height: 150px;
    bottom: -30px;
    right: 60px;
}

.auth-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-border-input);
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.welcome-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.auth-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
    line-height: 1.7;
}

.auth-features {
    list-style: none;
    padding: 0;
}

.auth-features li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.auth-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c5cae9;
    font-weight: 700;
}

/* Right Panel */
.auth-right {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 70px 48px 48px;
    background: var(--color-bg-surface);
}

.form-container {
    max-width: 400px;
    width: 100%;
}

.form-title {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 8px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* Form Elements */
.form-group {
    margin-bottom: 20px;
}

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

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.9rem;
    font-family: inherit;
    background: var(--color-bg-input);
    border: 1.5px solid var(--color-border-input);
    border-radius: 8px;
    color: var(--color-text-primary);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input::placeholder {
    color: var(--color-text-muted);
}

.form-input:focus {
    outline: none;
    border-color: var(--color-border-input-focus);
    box-shadow: var(--shadow-focus);
}

/* Buttons */
.btn {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: opacity 0.2s, background-color 0.2s;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: var(--color-brand-primary);
    color: var(--color-text-on-brand);
    margin-top: 8px;
}

.btn-primary:hover {
    background: var(--color-brand-tertiary);
}

/* Error Messages */
.error-message {
    background: var(--color-error-bg);
    border: 1px solid var(--color-error-border);
    color: var(--color-error-text);
    border-radius: 8px;
    padding: 12px;
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.password-error {
    color: var(--color-error-inline);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* Form Links */
.form-link {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: 20px;
}

.form-link a {
    color: var(--color-text-accent);
    font-weight: 600;
}

/* ============================
   Dashboard
   ============================ */
.dashboard-body {
    background: var(--color-bg-dashboard);
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    padding: 100px 32px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-left {
    flex: 1;
}

.hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
}

.hero-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-username {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

.hero-username strong {
    color: #ffffff;
}

.btn-logout {
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 0.85rem;
}

.btn-logout:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* Dashboard Content */
.dashboard-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 24px;
}

/* Mission Card */
.mission-card {
    background: var(--color-bg-surface);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--color-border-soft);
}

.section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 12px;
}

.mission-description {
    font-size: 0.9rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* Vulnerabilities Section */
.vuln-section {
    margin-bottom: 32px;
}

.vuln-header {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.vuln-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.vuln-card {
    background: var(--color-bg-surface);
    border-radius: 10px;
    padding: 20px;
    border: 1px solid var(--color-border-soft);
    transition: box-shadow 0.2s;
}

.vuln-card:hover {
    box-shadow: var(--shadow-card-hover);
}


.card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 10px 0 6px;
}

.vuln-link {
    text-decoration: none;
    color: inherit; 
    transition: color 0.2s ease;
}

.vuln-link:hover {
    color: #3b82f6; 
    text-decoration: underline;
}

.card-description {
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* Vulnerability Tags */
.tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tag-sqli {
    background: var(--tag-sqli-bg);
    color: var(--tag-sqli-fg);
}

.tag-xss {
    background: var(--tag-xss-bg);
    color: var(--tag-xss-fg);
}

.tag-session {
    background: var(--tag-session-bg);
    color: var(--tag-session-fg);
}

.tag-brute {
    background: var(--tag-brute-bg);
    color: var(--tag-brute-fg);
}

.tag-crypto {
    background: var(--tag-crypto-bg);
    color: var(--tag-crypto-fg);
}

.tag-exposed {
    background: var(--tag-exposed-bg);
    color: var(--tag-exposed-fg);
}

.tag-csrf {
    background: var(--tag-csrf-bg);
    color: var(--tag-csrf-fg);
}

/* Process Steps */
.steps-section {
    margin-top: 8px;
}

.steps-container {
    display: flex;
    gap: 16px;
}

.step-card {
    flex: 1;
    background: var(--color-step-bg);
    border-radius: 12px;
    padding: 24px;
    color: var(--color-step-text);
    text-align: center;
}

.step-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-step-badge);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-description {
    font-size: 0.82rem;
    color: var(--color-step-muted);
    line-height: 1.5;
}

/* ============================
   Responsive Design
   ============================ */
@media (max-width: 768px) {
    .auth-container {
        grid-template-columns: 1fr;
    }

    .auth-left {
        padding: 90px 24px 40px;
        min-height: auto;
    }

    .auth-right {
        padding: 32px 24px;
    }

    .vuln-grid {
        grid-template-columns: 1fr;
    }

    .steps-container {
        flex-direction: column;
    }

    .header-logo {
        width: 40px;
        height: 40px;
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding-top: 90px;
    }

    .hero-right {
        flex-direction: column;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1rem;
        margin-right: 8px;
    }
}

/* ============================================================
 * Password Strength Meter (signup form, advisory UX).
 * Frontend-only — no server-side policy change.
 * Theming via CSS custom properties so toggling data-theme
 * recolors the bar with zero JS involvement.
 * ============================================================ */

:root {
    --strength-color-empty:      #e0e3eb;
    --strength-color-very-weak:  #d32f2f;
    --strength-color-weak:       #f57c00;
    --strength-color-fair:       #fbc02d;
    --strength-color-good:       #689f38;
    --strength-color-strong:     #2e7d32;
    --criterion-met-color:       #2e7d32;
    --criterion-unmet-color:     #64748b;
}

[data-theme="dark"] {
    --strength-color-empty:      #2a2f3a;
    --strength-color-very-weak:  #ef5350;
    --strength-color-weak:       #ffa726;
    --strength-color-fair:       #ffd54f;
    --strength-color-good:       #9ccc65;
    --strength-color-strong:     #66bb6a;
    --criterion-met-color:       #9ccc65;
    --criterion-unmet-color:     #a0aec0;
}

.password-strength-meter {
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

.password-strength-bar {
    width: 100%;
    height: 6px;
    background-color: var(--strength-color-empty);
    border-radius: 6px;
    overflow: hidden;
}

.password-strength-bar-fill {
    height: 100%;
    width: 0%;
    background-color: var(--strength-color-empty);
    transition: width 0.18s ease, background-color 0.18s ease;
}

.password-strength-bar-fill.strength-empty      { background-color: var(--strength-color-empty); }
.password-strength-bar-fill.strength-very-weak  { background-color: var(--strength-color-very-weak); }
.password-strength-bar-fill.strength-weak       { background-color: var(--strength-color-weak); }
.password-strength-bar-fill.strength-fair       { background-color: var(--strength-color-fair); }
.password-strength-bar-fill.strength-good       { background-color: var(--strength-color-good); }
.password-strength-bar-fill.strength-strong     { background-color: var(--strength-color-strong); }

.password-strength-label {
    margin-top: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    min-height: 1em;
    color: var(--criterion-unmet-color);
}

.password-strength-meter.strength-very-weak .password-strength-label  { color: var(--strength-color-very-weak); }
.password-strength-meter.strength-weak      .password-strength-label  { color: var(--strength-color-weak); }
.password-strength-meter.strength-fair      .password-strength-label  { color: var(--strength-color-fair); }
.password-strength-meter.strength-good      .password-strength-label  { color: var(--strength-color-good); }
.password-strength-meter.strength-strong    .password-strength-label  { color: var(--strength-color-strong); }

.password-criteria-list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0 0;
}

.password-criteria-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    line-height: 1.5;
}

.password-criteria-item.is-met    { color: var(--criterion-met-color); }
.password-criteria-item.is-unmet  { color: var(--criterion-unmet-color); }

.password-criteria-marker {
    display: inline-block;
    width: 1em;
    text-align: center;
    font-weight: 700;
}

/* ============================================================
 * User Profile Page (authenticated /profile, change-password).
 * Reuses the dashboard surface/border/text variables so light
 * and dark themes are handled automatically. The success palette
 * is the only addition (no success colors existed before); it is
 * declared theme-aware under both :root and [data-theme="dark"].
 * ============================================================ */

:root {
    --color-success-bg:     #dcfce7;
    --color-success-border: #86efac;
    --color-success-text:   #166534;
}

[data-theme="dark"] {
    --color-success-bg:     #102a18;
    --color-success-border: #14532d;
    --color-success-text:   #86efac;
}

.profile-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.profile-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-soft);
    border-radius: 12px;
    padding: 24px;
}

.profile-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-soft);
}

.profile-field:last-child {
    border-bottom: none;
}

.profile-field-label {
    font-weight: 600;
    color: var(--color-text-muted);
}

.profile-field-value {
    color: var(--color-text-primary);
    word-break: break-all;
}

.profile-message {
    border-radius: 8px;
    padding: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.profile-message.is-error {
    background: var(--color-error-bg);
    border: 1px solid var(--color-error-border);
    color: var(--color-error-text);
}

.profile-message.is-success {
    background: var(--color-success-bg);
    border: 1px solid var(--color-success-border);
    color: var(--color-success-text);
}

/* ============================================================
 * CONTINUE WITH GOOGLE (OAuth) — v1.0.3
 * The "or" divider, the Google button (a styled <a>), and the
 * static "not configured" notice page. All theme-aware via the
 * existing custom properties; no new palette is introduced.
 * ============================================================ */

/* "or" divider between the form and the Google button */
.auth-divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 20px 0;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--color-border-soft);
}

.auth-divider span {
    padding: 0 12px;
}

/* Google button — reuses .btn (radius, weight, transition); overrides
   display to flex so the icon + label center together. */
.btn-google {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 12px;
    background: var(--color-bg-surface);
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-input);
}

.btn-google:hover {
    background: var(--color-bg-input);
}

.btn-google-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* Static "Google login not configured" notice page */
.notice-wrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 48px 20px;
}

.notice-card {
    background: var(--color-bg-surface);
    border: 1px solid var(--color-border-soft);
    border-radius: 12px;
    padding: 32px;
    max-width: 560px;
    width: 100%;
    text-align: center;
}

.notice-text {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 12px 0;
    text-align: left;
}

.notice-card code {
    background: var(--color-bg-input);
    border: 1px solid var(--color-border-soft);
    border-radius: 4px;
    padding: 1px 5px;
    font-size: 0.85em;
    color: var(--color-text-accent);
}

.notice-card .btn-primary {
    margin-top: 8px;
}

/* QR Code Login panel (v1.0.8) -- additive; reuses theme variables so it themes
   in light/dark automatically. The QR image is a server-rendered PNG data: URI. */
.qr-panel {
    margin-top: 24px;
    text-align: center;
}

.qr-panel #qr-image {
    max-width: 200px;
    margin: 12px auto;
    display: block;
}

/* Cloudflare Turnstile widget (v2.0.0) -- additive; spacing only, theme-agnostic.
   The widget itself is rendered by Cloudflare's script into <div class="cf-turnstile">. */
.cf-turnstile {
    margin: 16px 0;
}

/* Forgot Password (v2.1.0) -- additive block for /forgot-password and
   /reset-password. No existing rule is modified. Uses the existing CSS
   custom properties (--indigo-*, --surface-*) so the light/dark theme
   toggle works without a JS change. */
.reset-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 16px;
}

.reset-message {
    background: #eef1ff;
    border: 1px solid #c5cae9;
    color: #1a237e;
    border-radius: 8px;
    padding: 12px 14px;
    margin: 12px 0;
    font-size: 0.9rem;
    line-height: 1.45;
}
[data-theme="dark"] .reset-message {
    background: #1f2540;
    border-color: #2c3460;
    color: #c5cae9;
}

.reset-status {
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--color-text-secondary, #64748b);
}
[data-theme="dark"] .reset-status {
    color: #94a3b8;
}

.reset-status-heading {
    font-size: 1rem;
    color: var(--color-text-secondary, #64748b);
    margin: 12px 0;
    font-weight: 600;
}
