/* SCROLLBAR PERSONALIZADA - COMPONENTE REUTILIZÁVEL */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #0d0d0d;
}

::-webkit-scrollbar-thumb {
  background: #6b7280;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: #6b7280 #0d0d0d;
}

/* Aplicar em todos os elementos com scroll */
* {
  scrollbar-width: thin;
  scrollbar-color: #6b7280 #0d0d0d;
}

*::-webkit-scrollbar {
  width: 8px;
}

*::-webkit-scrollbar-track {
  background: #0d0d0d;
}

*::-webkit-scrollbar-thumb {
  background: #6b7280;
  border-radius: 4px;
}

*::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}
