/* Cache la popup par défaut */
#ap-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}

/* Affiche la popup quand elle est active */
#ap-popup.active {
  display: block !important;
}

/* Contenu de la popup */
#ap-popup .ap-popup-content {
  background: #fff;
  margin: 10% auto;
  padding: 30px;
  max-width: 400px;
  border-radius: 8px;
  position: relative;
}

/* Bouton de fermeture */
#ap-close {
  position: absolute;
  right: 10px;
  top: 10px;
  cursor: pointer;
  font-size: 22px;
}

/*admin*/

.ap-btn-red {
  background: #fff;
  color: #d00;
  border: 1px solid #d00;
  border-radius: 3px;
  padding: 2px 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ap-btn-red:hover {
  background: #d00;
  color: #fff;
}

/* Bouton Envoyer un email (bleu) */
.ap-btn-blue {
  background: #fff;
  color: #0073aa;
  border: 1px solid #0073aa;
  border-radius: 3px;
  padding: 2px 10px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.ap-btn-blue:hover {
  background: #0073aa;
  color: #fff;
}

/* Modal */
#ap-email-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
}

#ap-email-modal .ap-modal-content {
  background: #fff;
  max-width: 350px;
  margin: 10% auto;
  padding: 20px;
  border-radius: 8px;
  position: relative;
}

#ap-email-modal-close {
  position: absolute;
  top: 8px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
}

/* Pour le formulaire dans la popup abonnement projet */
#ap-popup .wpcf7-form label {
  display: block;
  text-align: left;
  font-weight: 600;
  margin-bottom: 6px;
}

#ap-popup .wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 18px;
}

#ap-popup .wpcf7-form input,
#ap-popup .wpcf7-form textarea {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 8px;
}

#ap-popup .wpcf7-form .wpcf7-submit {
  display: inline-block;
  margin-left: 0;
  background: #111;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 4px;
  cursor: pointer;
  text-align: left;
}