/* static/css/dark.css */
/* Aktivní automaticky přes <link media="(prefers-color-scheme: dark)"> */
:root { color-scheme: dark; }

/* Základní texty a pozadí */
body { background:#0f1115; color:#e9ecef; }
.bg-white { background:#161a24 !important; color:#e9ecef !important; }
.content { background:#0f1115; }

/* Header / top bar */
.header { background:#1b1f2a !important; border-bottom-color:#2a2f3a !important; }
.header .brand, .menu-toggle, .header .actions i { color:#e9ecef !important; }

/* Sidebar */
.sidebar { background:#121621; color:#e2e8f0; border-right:1px solid #2a2f3a; }
.sidebar a { color:#e2e8f0 !important; }
.sidebar .text-muted { color:#9aa4b2 !important; }

/* Typografie a utility – nejdůležitější fix: nic „neztmavne“ v dark */
.text-dark { color:#e9ecef !important; }
a.text-dark, a { color:#cde1ff; }
a:hover, a:focus { color:#e7f0ff; }
.text-muted { color:#9aa4b2 !important; }

/* Karty, hranice, tabulky */
.card, .shadow, .rounded, .border, .table, .table-striped, .table-hover {
  --bs-border-color: #2a2f3a;
  border-color: var(--bs-border-color) !important;
}
.table { color:#e9ecef; }
.table-striped > tbody > tr:nth-of-type(odd) > * { background-color:#141926; }
.table-hover tbody tr:hover > * { background-color:#192033; }

/* Dropdown oznámení */
#notificationDropdown { background:#161a24; color:#e9ecef; border:1px solid #2a2f3a; }
#notificationDropdown ul.scrollable{ max-height:60vh; overflow-y:auto; }

/* Badges / štítky – necháme syté, ale čitelné na tmavém pozadí */
.badge.bg-danger { background-color:#dc3545 !important; color:#fff !important; }
.badge.bg-light { background-color:#333a4a !important; color:#e9ecef !important; }

/* Buttons – jemné korekce */
.btn-outline-primary { border-color:#5b8cff; color:#cde1ff; }
.btn-outline-primary:hover { background:#1e2b4a; color:#fff; }
.btn-outline-secondary { border-color:#6c757d; color:#d7dde2; }
.btn-outline-secondary:hover { background:#2a2f3a; color:#fff; }
