/* Safari-style scrollbars (light + dark, Webkit + Firefox). */

:root {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.35) transparent;
}

html.dark {
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}

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

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

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 9999px;
  border: 3px solid transparent;
  background-clip: padding-box;
  min-height: 40px;
  transition: background-color 150ms ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:active {
  background-color: rgba(0, 0, 0, 0.65);
}

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

html.dark ::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.22);
}

html.dark ::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.4);
}

html.dark ::-webkit-scrollbar-thumb:active {
  background-color: rgba(255, 255, 255, 0.55);
}
