/* Global Scrollbar */
* {
  scrollbar-width: thin; /* Firefox */
  scrollbar-color: #367aff #e5e7eb; /* Firefox: thumb color, track color */
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #e5e7eb; /* Light gray track */
}

*::-webkit-scrollbar-thumb {
  background-color: #367aff; /* Primary blue */
  border-radius: 100px;
  border: 2px solid transparent;
  background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #2e68d0; /* Slightly darker on hover */
}
