/* Scrollbar global - Webkit */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #cbd5e1; /* slate-300 */
  border-radius: 9999px;
}

/* HILANGKAN PANAHNYA */
*::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

/* Dark mode scrollbar */
html.dark *::-webkit-scrollbar-thumb {
  background-color: #4b5563; /* slate-600 */
}

/* Firefox */
html, body {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}

html.dark, body.dark {
  scrollbar-color: #4b5563 transparent;
}
