﻿/* ================================================================
   WardSource2 — ws-theme.css
   Theme: Night (only active theme)
   Day theme is commented out — preserved for white-label reference
   
   White-label theming note:
   - Each deployment gets ONE theme only
   - WardSource: night
   - Asylum Books (future): deep space + gold (asylum-style)
   - Crime Junkies (future): Kentucky blue + white
   ================================================================ */

/* ── Night theme — WardSource default, hardcoded ─────────────── */
:root,
[data-theme="night"],
[data-theme="day"] {
    --bg-primary: #12141A;
    --bg-secondary: #1A1D26;
    --bg-card: #1E2130;
    --bg-input: #0F1118;
    --bg-main: #12141A;
    --accent: #4A80CC;
    --accent-hover: #3A6AB0;
    --accent-glow: rgba(74,128,204,0.20);
    --blue: #4A80CC;
    --green: #2A8040;
    --amber: #A08010;
    --red: #A03030;
    --text-primary: #E4E6EE;
    --text-secondary: #9EA2B0;
    --text-muted: #5A5E70;
    --border: #262A3A;
    --border-light: #2E3348;
    --nav-width: 220px;
    --chat-width: 304px;
    --row-hover: rgba(74,128,204,0.08);
    --chat-user-bg: #1B3A6B;
}

/* ── Day theme (DISABLED — reference only for white-label) ──────
[data-theme="day"] {
    --bg-primary: #F5F0EB;
    --bg-secondary: #EDE6DD;
    --bg-card: #FAF7F4;
    --bg-input: #FFFFFF;
    --bg-main: #F5F0EB;
    --accent: #C1440E;
    --accent-hover: #A33A0C;
    --accent-glow: rgba(193,68,14,0.15);
    --blue: #2A6099;
    --green: #1A6B30;
    --amber: #8B6000;
    --red: #B03020;
    --text-primary: #1A1410;
    --text-secondary: #3A3028;
    --text-muted: #7A706A;
    --border: #D4CAC0;
    --border-light: #E2DAD0;
    --row-hover: rgba(193,68,14,0.06);
    --chat-user-bg: #C1440E;
}
──────────────────────────────────────────────────────────────── */

/* Date picker — always dark */
input[type="date"].edit-input {
    color-scheme: dark;
    filter: invert(0.85) hue-rotate(180deg);
}
