/* Minimal Scrollbar — No Track Background */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: transparent; /* no background */
}

::-webkit-scrollbar-thumb {
  background-color: #5a9ef765; /* your accent color */
  border-radius: 10px;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #5a9ef7; /* solid color on hover */
}

/* Firefox support */
* {
  scrollbar-width: thin;
  scrollbar-color: #5a9ef765 transparent; /* transparent track */
}
