.popup-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.6); /* Fond plus sombre pour un effet modal prononcé */
}

.popup-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    border-radius: 10px; /* Coins arrondis pour plus de graphisme */
    width: 80%;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Ombre pour un look plus graphique */
}

.popup-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.popup-close:hover,
.popup-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

h3 {
    font-size: 1.2em; /* Titre plus petit */
    color: #d9534f; /* Couleur rouge pour alerte */
    margin-bottom: 10px;
}

p {
    font-size: 1.4em; /* Texte plus grand */
    margin: 10px 0;
}

p i, h3 i {
    margin-right: 10px; /* Espacement pour les icônes */
    color: #f0ad4e; /* Couleur orange pour les icônes */
}

#popup-close-button {
    background-color: #5cb85c; /* Vert pour le bouton */
    color