
/* ===== GLOBAL DARK SCROLLBARS ===== */

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #0b0f14; /* deep dark */
}

::-webkit-scrollbar-thumb {
  background: #2a2f36; /* dark gray */
  border-radius: 8px;
  border: 2px solid #0b0f14;
}

::-webkit-scrollbar-thumb:hover {
  background: #3a4048;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #2a2f36 #0b0f14;
}

