/* Firefox */
#lista {
  scrollbar-width: thin;
  scrollbar-color: #0dcaf0 #2c2c2c; /* thumb, track */
}

/* WebKit browsers */
#lista::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
#lista::-webkit-scrollbar-track {
  background: #2c2c2c;
  border-radius: 4px;
}
#lista::-webkit-scrollbar-thumb {
  background-color: #0dcaf0;
  border-radius: 4px;
  border: 2px solid #2c2c2c;
}
#lista::-webkit-scrollbar-thumb:hover {
  background-color: #0ac6e6;
}
