/* Toast Animationen */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.custom-toast {
    animation: slideInRight 0.3s ease-out;
}

.custom-toast.hiding {
    animation: slideOutRight 0.3s ease-in;
} 