/* Custom scrollbar styles */
.custom-scrollbar {
  /* Webkit browsers (Chrome, Safari, Edge) */
  scrollbar-width: thin;
  scrollbar-color: #C2AF90 #F2E4C6;
}

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

.custom-scrollbar::-webkit-scrollbar-track {
  background: #F2E4C6;
  border-radius: 4px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #C2AF90;
  border-radius: 4px;
  border: 1px solid #F2E4C6;
}

.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #A3906F;
}

.custom-scrollbar::-webkit-scrollbar-corner {
  background: #F2E4C6;
}
