/* Global scrollbar styles */
::-webkit-scrollbar { 
	width: 8px; /* Width of the scrollbar */
	height: 8px; /* Height of the horizontal scrollbar */
  }
  
  ::-webkit-scrollbar-track {
	background: #f1f1f1; /* Background color of the track */
	border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb {
	background: #888; /* Color of the scrollbar thumb */
	border-radius: 10px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #555; /* Color when hovered */
  }
  
  /* Add styles for other browsers if needed */