/* Global scrollbar styling: compact, neutral, and professional */
* {
  scrollbar-width: thin;
  scrollbar-color: #b5bcc7 #eef1f5;
}

/* Chromium, Edge, Safari */
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

*::-webkit-scrollbar-track {
  background: #eef1f5;
  border-radius: 999px;
}

*::-webkit-scrollbar-thumb {
  background: #b5bcc7;
  border-radius: 999px;
  border: 2px solid #eef1f5;
}

*::-webkit-scrollbar-thumb:hover {
  background: #99a3b2;
}

/* Hide scrollbar utility class */
.no-scroller::-webkit-scrollbar {
  display: none;
}

.no-scroller {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

