/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #142441 #000000;
  /* Light thumb, dark track */
  /* scrollbar-color: white black; */
}

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

*::-webkit-scrollbar-track {
  background: #000000; /* Black track */
}

*::-webkit-scrollbar-thumb {
  background-color: #142441; /* Dark thumb */
  border-radius: 6px;
  border: 3px solid #000000; /* Match track color */
}
