/* Define the style for the scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* Define the track style */
::-webkit-scrollbar-track {
  background: linear-gradient(to bottom, #252525, #2f2f2f);
}

/* Define the thumb style */
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.5);
  border: 2px solid #555;
  border-radius: 10px;
}

/* Define the hover style */
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.8);
}