/* ============================================
   Composant : Message d'erreur
   ============================================ */

.error-message {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 16px 24px;
    background: #ff4444;
    color: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(255, 68, 68, 0.3);
    z-index: 1000;
    max-width: 400px;
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

