/* hide native scrollbar completely */
.nested-ul-scroll {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.nested-ul-scroll::-webkit-scrollbar {
  width: 0 !important;
  height: 0 !important;
  display: none !important;
}

/* Ensure wrapper positioning */
.nested-li-scroll {
  position: relative;
}

/* Fake scrollbar track (grey) */
.fake-scrollbar {
  position: absolute;
  top: 8px;
  /* prevents header overlap */
  right: 2px;
  width: 8px;
  height: calc(100% - 16px);
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  z-index: 10;
  pointer-events: none;
}

/* Fake scrollbar thumb (black) */
.fake-scrollbar-thumb {
  position: absolute;
  width: 100%;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 999px;
  will-change: transform;
}
