/**
 * Dark Theme Scrollbar Component
 * Loaded absolutely last in base.html (after extra_head) for maximum priority
 */

/* Firefox */
html, body, * {
  scrollbar-width: thin;
  scrollbar-color: #374151 #1a1f2e;
}

/* Chrome, Safari, Edge (Webkit) */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track,
*::-webkit-scrollbar-track {
  background: #1a1f2e;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb,
*::-webkit-scrollbar-thumb {
  background: #374151;
  border-radius: 4px;
}

html::-webkit-scrollbar-thumb:hover,
body::-webkit-scrollbar-thumb:hover,
*::-webkit-scrollbar-thumb:hover {
  background: #4b5563;
}

html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner,
*::-webkit-scrollbar-corner {
  background: #1a1f2e;
}
