/* styles.css */
.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #9DB2BF;
}
.popup-content {
    display: flex;
    justify-content: center;
    background-color: #DDE6ED;
    width: 90%;
    margin: 10% auto;
    padding: 20px;
    border-radius: 5px;
    border: 1px;
    box-shadow: 0px 0px 0px 1px #000000;
    align-items: center;
}
/* styles pour le bouton fermer*/
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close:hover,
.close:focus {
    color: #000000;
    text-decoration: none;
}