/* Styles spécifiques pour la fenêtre modale de la politique de confidentialité */

.modal {
    display: none;
    position: sticky;
    z-index: 1000;
    right: 20px;
    bottom: 20px;
    width: 500px;
    max-width: calc(100% - 20px);
    height: auto;
    max-height: calc(100% - 20px);
    overflow: auto;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    padding: 20px;
}

/* Style pour le bouton de fermeture */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style pour les boutons */
.modal-content button {
    background-color: #4CAF50; /* Vert */
    color: white;
    padding: 10px 20px;
    margin: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
	margin-right: 1px
}

.modal-content button:hover {
    background-color: #45a049; /* Vert plus foncé */
}
