/* Custom styles beyond Tailwind utility classes */

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Accordion transition for smooth open/close */
.accordion-content {
  transition: max-height 0.3s ease-out, padding 0.3s ease;
  max-height: 0;
  overflow: hidden;
}

.accordion-content.open {
  max-height: 2000px; /* arbitrary large max height for transition */
}
