/* Dark scrollbars matching the AutoPOS theme (loaded by every screen). */
*::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: #2d3a4f;
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: #3b82f6;
}
*::-webkit-scrollbar-thumb:active {
  background-color: #2563eb;
}
*::-webkit-scrollbar-corner {
  background: transparent;
}

/* Browsers without ::-webkit-scrollbar (Firefox). Chrome ignores the rules
   above whenever scrollbar-color is set, so keep this out of Chrome. */
@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-width: thin;
    scrollbar-color: #2d3a4f transparent;
  }
}
