/* ============================================
   COMPONENTS: Scrollbar — Obsidian Aurora
   ============================================ */

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--app-bg-1);
}

::-webkit-scrollbar-thumb {
  background: #283040;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #3A4258;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #283040 var(--app-bg-1);
}
