/* ===== Global Scrollbar Styling ===== */

/* Firefox */
:root {
  scrollbar-width: thin;
  scrollbar-color: #94a3b8 transparent;
}

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

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

::-webkit-scrollbar-thumb {
  background: #94a3b8;
  border-radius: 999px;
  border: 3px solid transparent;
  background-clip: content-box;
}

::-webkit-scrollbar-thumb:hover {
  background: #64748b;
  background-clip: content-box;
}

/* Dark Mode */
.dark {
  scrollbar-color: #475569 transparent;
}

.dark ::-webkit-scrollbar-thumb {
  background: #475569;
  background-clip: content-box;
}

.dark ::-webkit-scrollbar-thumb:hover {
  background: #334155;
  background-clip: content-box;
}
