Html Tailwind Guideline: Animation — Hover transitions. Description: Add smooth transitions on hover state changes. Do: Add transition class with hover states. Don't: Instant hover changes without transition. Good Example: hover:bg-gray-100 transition-colors. Bad Example: hover:bg-gray-100 (no transition). Severity: Low. Docs: .