.nice-scrollbar::-webkit-scrollbar {
  height: 8px;
}

.nice-scrollbar::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 9999px;
}

.nice-scrollbar::-webkit-scrollbar-thumb {
  background-color: rgba(255, 102, 0, 0.6); /* Hot Wheels orange */
  border-radius: 9999px;
  border: 4px solid transparent;
  background-clip: content-box;
}

.nice-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 80, 0, 0.8);
}

.nice-scrollbar {
  scrollbar-color: rgba(255, 102, 0, 0.6) transparent;
  scrollbar-width: thin;
}
