/*
  Real native scrollbar, themed. No JS/fake thumb — this is the actual
  browser scrollbar, so it stays fully functional (draggable, scrollable)
  and always shows true position, on every viewport size.
*/

html {
  scrollbar-color: var(--accent-strong) transparent;
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 10px;
}

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

::-webkit-scrollbar-thumb {
  background-color: var(--accent-strong);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: content-box;
}
