

.custom-toast {
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    margin-top: 10px;
    min-width: 200px;
    font-size: 14px;
    animation: slideIn 0.3s ease;
}

.custom-toast.success {
    background-color: #28a745; /* vert */
}

.custom-toast.error {
    background-color: #dc3545; /* rouge */
}

.custom-toast.info {
    background-color: #007bff; /* bleu */
}

.custom-toast.default {
    background-color: #333; /* gris par défaut */
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
