/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #f0f0f0; /* Warna track lebih terang */
  border-radius: 3px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #b0b0b0; /* Warna handle lebih lembut */
  border-radius: 3px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #808080; /* Warna handle lebih gelap saat hover */
}
