/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px; /* Width of the scrollbar */
    
  }
  
  ::-webkit-scrollbar-track {
    background: #1e1e2e; /* Dark background */
  }
  
  ::-webkit-scrollbar-thumb {
    background: #6b7280; /* Gray thumb */
    border-radius: 10px; /* Rounded corners */
    height: 5px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
    background: #4b5563; /* Darker gray on hover */
  }
  