/* Scrollbar width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: rgb(38, 43, 50); /* Change this to your desired background color */
}

/* Handle (scrollbar itself) */
::-webkit-scrollbar-thumb {
  background: rgb(38, 43, 50); /* Change this to your desired handle color */
  border-radius: 5px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ffeaa7;
}