/* For WebKit-based Browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 10px; /* Set the width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background-color: red; /* Background color of the scrollbar track */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: blue; /* Color of the scrollbar thumb */
    border-radius: 5px; /* Rounded corners of the scrollbar thumb */
  }
  
  /* Optional: When hovering over the scrollbar */
  ::-webkit-scrollbar-thumb:hover {
    background-color: green; /* Color of the scrollbar thumb on hover */
  }