/* Define scrollbar styles */
::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar */
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
    background: #1e1e28; /* Set the background color of the scrollbar handle */

  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
    background: #2c2c38; /* Set the background color of the track */
    border-radius: 4px; /* Set the border radius to make it rounded */
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
    background: rgb(156, 156, 156)e28; /* Change the background color of the scrollbar handle on hover */
  }
  