/* ===== Scrollbar (Chrome/Edge/Safari) ===== */

::-webkit-scrollbar {
  width: 10px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
  background: #bdbdbd;
  border-radius: 20px;
  border: 1px solid #f2f2f2;
}

::-webkit-scrollbar-thumb:hover {
  background: #9e9e9e;
}

/* ===== Firefox ===== */

html {
  scrollbar-width: thin;
  scrollbar-color: #bdbdbd #f2f2f2;
}

