/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 2px; /* Adjust this to make it thinner */
  height: 6px; /* For horizontal scrollbars */
}

::-webkit-scrollbar-track {
  background: transparent; /* Optional: track background */
}

::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.4); /* Scrollbar color */
  border-radius: 10px;
}

/* For Firefox */
* {
  scrollbar-width: thin;       /* Options: auto | thin | none */
  scrollbar-color: rgba(0,0,0,0.4) transparent; /* thumb color | track color */
}

