/* === Global thin scrollbar === */

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00eaff, #a200ff);
  border-radius: 50px;
}

/* Thin neon scrollbar specifically for the sidebar body */

.sidebar-body::-webkit-scrollbar {
  width: 2px;
}

.sidebar-body::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar-body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #00eaff, #a200ff);
  border-radius: 50px;
}

/* Thin scrollbar specifically for the main scroll area */

.main-section::-webkit-scrollbar {
  width: 2px;  /* match sidebar */
}

.main-section::-webkit-scrollbar-track {
  background: transparent;
}
