/* toast.css — converted from src/components/Toast.tsx (framer-motion replaced with CSS transitions) */
.toast-item {
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast-item.toast-in { opacity: 1; transform: translateY(0) scale(1); }
.toast-item.toast-out { opacity: 0; transform: scale(0.9); }
