/* Tailwind + Scrollbar Manual */
::-webkit-scrollbar {
  width: 8px;
}

/* Default (mode terang / light) */
::-webkit-scrollbar-track {
  background-color: white;
  border-radius: 9999px;
}

html.dark ::-webkit-scrollbar-track {
  background-color: black; /* Contoh: bg-gray-800 */
}


::-webkit-scrollbar-thumb {
  background: #27AE60; /* biru tailwind (blue-500) */
  border-radius: 40px;
}

::-webkit-scrollbar-thumb:hover {
  background: #145A32; /* blue-600 */
}


.scroll-custom::-webkit-scrollbar {
  height: 8px;
}