::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color-slate-300);
  border-radius: 9999px;
  transition: background-color 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background-color: var(--color-slate-400);
}

::-webkit-scrollbar-thumb:active {
  background-color: var(--color-slate-500);
}

* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-slate-300) transparent;
}
