/* Custom Scrollbar Design - Applied to All Pages */

/* For Webkit browsers (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, rgb(229, 84, 0), rgb(255, 140, 58));
  border-radius: 10px;
  transition: all 0.3s ease;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, rgb(204, 75, 0), rgb(229, 84, 0));
  width: 10px;
}

::-webkit-scrollbar-thumb:active {
  background: linear-gradient(135deg, rgb(178, 65, 0), rgb(204, 75, 0));
}

/* For Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: rgb(229, 84, 0) #f1f1f1;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Hide scrollbar on mobile for cleaner look (optional) */
@media (max-width: 768px) {
  ::-webkit-scrollbar {
    width: 6px;
  }
}

/* Horizontal scrollbar styling */
::-webkit-scrollbar-horizontal {
  height: 6px;
}

/* Corner where vertical and horizontal scrollbars meet */
::-webkit-scrollbar-corner {
  background: #f1f1f1;
}

/* Scrollbar button styling (arrows) */
::-webkit-scrollbar-button {
  display: none;
}
