/* SCROLLBAR DARK MODE OVERRIDE - MÁXIMA PRIORIDADE */
/* Este arquivo DEVE ser carregado DEPOIS de todos os outros CSS */

/* Webkit (Chrome, Edge, Safari) */
body.dark-mode::-webkit-scrollbar,
body.dark-mode *::-webkit-scrollbar {
  width: 12px !important;
  height: 12px !important;
}

body.dark-mode::-webkit-scrollbar-track,
body.dark-mode *::-webkit-scrollbar-track {
  background: #161d2f !important;
  background-color: #161d2f !important;
  border-radius: 0 !important;
}

body.dark-mode::-webkit-scrollbar-thumb,
body.dark-mode *::-webkit-scrollbar-thumb {
  background: #374151 !important;
  background-color: #374151 !important;
  border-radius: 6px !important;
}

body.dark-mode::-webkit-scrollbar-thumb:hover,
body.dark-mode *::-webkit-scrollbar-thumb:hover {
  background: #4b5563 !important;
  background-color: #4b5563 !important;
}

/* Firefox */
body.dark-mode,
body.dark-mode * {
  scrollbar-width: thin !important;
  scrollbar-color: #374151 #161d2f !important;
}
