/* Styling the scrollbar track (part the thumb slides within) */
  body::-webkit-scrollbar-track {
    background-color: #181818; /* Light grey background for the track */
    border-radius: 10px; /* Rounded corners for the track */
  }
  
  /* Styling the scrollbar thumb (the part that's draggable) */
  body::-webkit-scrollbar-thumb {
    background-color: #888; /* Darker grey for the thumb */
    border-radius: 10px; /* Rounded corners for the thumb */
    border: 3px solid #181818; /* Adds a light grey border around the thumb */
  }
  
  /* Styling the scrollbar itself (width, height) */
  body::-webkit-scrollbar {
    width: 14px; /* Width of the vertical scrollbar */
    height: 8px; /* Height of the horizontal scrollbar (if applicable) */
  }