/* Custom Scrollbar (Global) */
/* For WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

::-webkit-scrollbar-thumb {
  background: #e887a3;
  border-radius: 10px;
  border: 2px solid #f1f1f1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Show on hover or when scrolling */
body:hover::-webkit-scrollbar-thumb,
body.scrolling::-webkit-scrollbar-thumb,
body:hover::-webkit-scrollbar-track,
body.scrolling::-webkit-scrollbar-track {
  opacity: 1;
}

/* For Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #e887a3 #f1f1f1;
}