@keyframes bounce-in { 0% { transform: translateY(20px); opacity: 0 } 60% { transform: translateY(-4px); opacity: 1 } 100% { transform: translateY(0) } }
.animate-bounce-in { animation: bounce-in .35s ease-out }
html { scroll-behavior: smooth }
input[type="date"] { min-height: 42px }
