@tailwind base; @tailwind components; @tailwind utilities; @keyframes slideInRight { from { transform: translateX(100%); } to { transform: translateX(0); } } @layer utilities { .animate-slide-in-right { animation: slideInRight 300ms ease-out; } }