/* CSS for cell : exploreInfinityMap  — GapAnalysis-style scrollbar */

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgba(124, 58, 237, 0.45) transparent; /* thumb | track */
}

/* WebKit (Chrome/Edge/Safari) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 999px;
}

::-webkit-scrollbar-thumb {
  background: rgba(124, 58, 237, 0.35);   /* soft purple, semi-transparent */
  border-radius: 999px;
  border: 3px solid transparent;          /* creates the “padded” thumb look */
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(124, 58, 237, 0.55);
  border: 3px solid transparent;
  background-clip: padding-box;
}

::-webkit-scrollbar-thumb:active {
  background: rgba(124, 58, 237, 0.75);
  border: 3px solid transparent;
  background-clip: padding-box;
}

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