@tailwind base;
@tailwind components;
@tailwind utilities;


::-webkit-scrollbar {
  width: 5px;
  /* Adjust the width of the scrollbar */
}

/* Customize the scrollbar thumb */
::-webkit-scrollbar-thumb {
  background: black;
  /* Color of the scrollbar thumb */
  border-radius: 5px;
  /* Roundness of the scrollbar thumb */
}

/* Change the scrollbar thumb color when hovered over */
::-webkit-scrollbar-thumb:hover {
  background: blue;
  /* Darker color on hover */
}