/* Para navegadores baseados em WebKit */
::-webkit-scrollbar {
  width: 15px; 
}
::-webkit-scrollbar-track {
  background-color: #05080B !important; 
}
::-webkit-scrollbar-thumb {
  background: #00b055; 
  border-radius: 10px; 
}
::-webkit-scrollbar-thumb:hover {
  background: #008e44; 
}
/* Para Firefox */
* {
  scrollbar-width: thin; 
  scrollbar-color: #00b055 var(--primary-color);
}