/* Minimal theming helpers.
   Bootstrap 5.3 already supports color modes via data-bs-theme.
   This file adds a couple of app-shell tweaks.
*/

html[data-bs-theme='dark'] {
  --app-bg: #0b0f14;
  --sidebar-bg: #121820;
}

html[data-bs-theme='dark'] .top-navbar {
  background: #0f141b;
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

html[data-bs-theme='dark'] .sidebar .nav-link:hover {
  background: rgba(255, 255, 255, 0.10);
}

html[data-bs-theme='dark'] .sidebar .nav-link.active {
  background: rgba(255, 255, 255, 0.16);
}
