/* For Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #FFF3F0; /* Track color */
}

::-webkit-scrollbar-thumb {
  background: #888; /* Thumb color */
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555; /* Thumb hover */
}

/* For Firefox */
* {
  scrollbar-width: thin;            /* "auto" or "thin" */
  scrollbar-color: #888 #f1f1f1;    /* thumb and track */
}
