/* ==========================================================
   toast.css — Surcharges Tabler/Bootstrap pour les toasts
   ========================================================== */

/* Animation d'entrée */
#pb-toasts .toast {
    animation: pb-toast-slide-in 0.3s ease forwards;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

@keyframes pb-toast-slide-in {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
