
/* Global scrollbar styles */
html {
  scrollbar-width: thin; /* For Firefox */
  scrollbar-color: tomato #f0f0f0; /* For Firefox, thumb and track colors */
}

/* For WebKit-based browsers like Chrome, Safari, Edge */
body::-webkit-scrollbar {
  width: 5px; /* Set the width of the scrollbar */
}

body::-webkit-scrollbar-thumb {
  background-color: tomato; /* Color of the scroll thumb */
  border-radius: 10px; /* Rounded corners of the scroll thumb */
}