/* Minimal custom animations not covered by Tailwind */
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-view {
  animation: fadeSlideIn 200ms ease-out;
}
