/* Scrollbar styles */

::-webkit-scrollbar {
  width: 10px;
}


::-webkit-scrollbar-track {
  background: rgb(30,30,35); 
  border-radius: 4px;
}
 

::-webkit-scrollbar-thumb {
  background: rgb(65,65,70); 
  border-radius: 4px;
}


::-webkit-scrollbar-thumb:hover {
  background: rgb(85,85,85); 
}