/* Conteneur des notifications */
.notification-container {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 999999999999;
}

/* Style de base des notifications */
.notification {
    position: relative;
    min-width: 250px;
    max-width: 400px;
    padding: 15px 35px 15px 20px;
    margin-bottom: 10px;
    border-radius: 4px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    font-size: 14px;
    color: white;
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s, transform 0.3s;
}

/* Animation d'apparition */
.notification.show {
    opacity: 1;
    transform: translateY(0);
}

/* Couleurs des notifications */
.notification-success { background-color: #4CAF50; }
.notification-error { background-color: #f44336; }
.notification-info { background-color: #607D8B; }

/* Bouton de fermeture */
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 2px;
    font-size: 16px;
    line-height: 1;
}

.close-btn:hover {
    opacity: 0.8;
}