::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
  }
  
  ::-webkit-scrollbar-track {
    background: #1a1a1a; /* Background color of the scrollbar track */
  }
  
  ::-webkit-scrollbar-thumb {
    background-color: #72b572; /* Color of the scrollbar thumb */
    border-radius: 6px; /* Rounded corners for the scrollbar thumb */
    border: 3px solid #1a1a1a; /* Adds padding around the thumb */
  }
  * {
    scrollbar-width: thin;
    scrollbar-color: #3ac986 #1a1a1a;
  }