/* Styles pour les notifications */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 50;
    opacity: 0;
    transform: translateY(-1rem);
    transition: all 0.3s ease-in-out;
}

.notification.show {
    opacity: 1;
    transform: translateY(0);
}

.notification.success {
    background-color: #709CA7;
    color: white;
}
.notification.error {
    background-color: #137C8B;
    color: white;
}

.notification.info {
    background-color: #7A90A4;
    color: white;
}

.notification.warning {
    background-color: #344D59;
    color: white;
}

.notification .content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.notification i {
    font-size: 1.25rem;
}
