#feedback-button {
  background-color: #ff6600;
  color: white;
  padding: 6px 16px;
  border-radius: 0 10px 10px 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 14px;
  z-index: 1000;
  display: block;
  text-align: center;
}

#feedback-button a {
  text-decoration: none;
  color: white;
}

#feedback-button:hover {
  background-color: #cc5500;
}

/* Style pour la modal */
.modal {
  display: none; /* Cache la modal par défaut */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fond semi-transparent */
  z-index: 1001;
}

/* Contenu de la modal */
.modal-content {
  background-color: white;
  margin: 10% auto;
  padding: 20px;
  border-radius: 5px;
  width: 80%;
  max-width: 800px;
}

/* Bouton de fermeture */
.close-btn {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 15px;
}

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