/* Custom styles beyond Tailwind */
.toast {
    animation: slideIn 0.3s ease-out, fadeOut 0.3s ease-in 2.7s;
    animation-fill-mode: forwards;
}
@keyframes slideIn {
    from { transform: translateY(-1rem); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}
