/* Scrollbar styling */
.scrollbar {
  overflow-y: scroll;
}

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

.scrollbar::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 4px;
}

.scrollbar::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}