/* ==========================================================================
   Dark Theme Variable Overrides
   ========================================================================== */
html.dark-theme, body.dark-theme {
    /* Backgrounds & Surfaces */
    --bg-body: #0f172a;       
    --bg-surface: #1e293b;    
    --bg-subtle: #334155;    

    /* Typography */
    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    /* Borders */
    --border-color: #334155;
    --border-color-hover: #475569;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.5), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
}

/* Element specific overrides */
body.dark-theme .badge {
    background: #1e3a8a; 
    color: #bfdbfe;
}

body.dark-theme input,
body.dark-theme textarea,
body.dark-theme select {
    background-color: var(--bg-body);
    color: var(--text-main);
}