.select-options,
.select-trigger {
  font-size: 0.75rem;
  line-height: 1;
}

/* Custom scrollbar for Tailwind */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #c1c1c1 #f1f1f1;
}

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

.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

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

/* Animations for smooth hide/show */
.select-options {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

