::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-thumb {
  background: #b0b0b0;
  border-radius: 3px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #b0b0b0 transparent;
}

/* Brand primary color override — applied to both light and dark themes.
   DaisyUI derives .btn-primary, .badge-primary, .link-primary, .text-primary,
   .border-primary, .toggle-primary, etc. from --color-primary. */
:root,
:root:has(input.theme-controller[value=light]:checked),
[data-theme=light],
:root:has(input.theme-controller[value=dark]:checked),
[data-theme=dark] {
  --color-primary: #014789;
  --color-primary-content: #ffffff;
}

