/* For Webkit Browsers (Chrome, Edge, Safari) */
::-webkit-scrollbar {
    width: 10px; /* Scrollbar width */
  }
  
  ::-webkit-scrollbar-track {
    background: #f1f1f1; /* Background color */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #f49d1a; /* Scrollbar handle color */

  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #640d6b ; /* Handle color on hover */
  }
  