/* Style spécifique pour le bouton */
.btnMentionStyle {
  position: fixed;
  width: 35px; /* Taille du bouton */
  height: 35px;
  border-radius: 50%; /* Bouton rond */
  border: 1px solid #0056b3;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
  left: 170px;
  top: 10px;
  background-color: rgba(0, 0, 255, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Style pour l'icône */
.btnMentionStyle img {
  width: 20px; /* Taille de l'icône */
  height: 20px;
}

/* Effets au survol */
.btnMentionStyle:hover {
  background-color: #339c36ff; /* Couleur au survol */
  transform: scale(1.1); /* Agrandir légèrement */
}

/* Effet en cliquant */
.btnMentionStyle:active {
  transform: scale(0.95); /* Réduction temporaire lors du clic */
}

@media (max-width: 600px) {
  .btnMentionStyle {
    left: 0px; /* Position ajustée pour mobile */
  }
}


/* Style de la fenêtre modale des mentions légales */
.modal-mention {
    display: none;
    position: fixed;
    z-index: 1; /* Au-dessus de tout le contenu */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
    overflow: auto;
    z-index: 9999;
}

/* Contenu de la fenêtre modale */
.modal-content-mention {
    background-color: #fff;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Ajuster la largeur de la modale */
    max-width: 800px; /* Largeur maximale */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}



/* Style du bouton de fermeture */
.close-mention {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-mention:hover,
.close-mention:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Style du titre */
.modal-content-mention h2 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 20px;
    color: #007BFF; /* Couleur bleu pour le titre */
}

/* Style du texte des mentions légales */
.modal-content-mention p {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-family: Arial, sans-serif;
}

/* Style pour les liens */
.modal-content-mention a {
    color: #007BFF;
    text-decoration: none;
}

.modal-content-mention a:hover {
    text-decoration: underline;
}



