/* style.css */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Hide horizontal scrollbar */
body {
  overflow-x: hidden;
}

/* Optional custom scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background-color: #888;
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}

  