html, body {
  background: #087CA7;
  font-family: "Quicksand", serif;
}

.item {
  background: #ffffff;
  border-radius: 25px;
  padding: 10px;
}

/* Scrollbar styling */
.list-container::-webkit-scrollbar {
    width: 10px; /* Breedte van de scrollbar */
}

.list-container::-webkit-scrollbar-track {
    background: #f1f1f1; /* Achtergrond van de scrollbar-track */
    border-radius: 5px;
}

.list-container::-webkit-scrollbar-thumb {
    background: #888; /* Kleur van de scrollbar */
    border-radius: 5px; /* Ronde hoeken */
}

.list-container::-webkit-scrollbar-thumb:hover {
    background: #555; /* Kleur bij hover */
}