/* Overlay */
.lespadulac-popup-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* Contenu popup */
.lespadulac-popup-content {
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 400px;
  width: 100%;
  position: relative;
  font-family: inherit;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  animation: fadeIn 0.3s ease-out;
}

/* Titre */
.lespadulac-popup-content h2 {
  margin-top: 0;
  font-size: 20px;
  margin-bottom: 12px;
}

/* Texte */
.lespadulac-popup-content p,
.lespadulac-popup-text {
  font-size: 15px;
  line-height: 1.5;
}

/* Bouton de fermeture (croix) */
.lespadulac-popup-close {
  position: absolute;
  top: 10px;
  left: 10px;
  background: none;
  border: none;
  color: #d10000; /* rouge fixe */
  font-size: 24px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  transition: transform 0.2s ease-in-out;
}

/* Animation Grow au survol de la croix (sans changement couleur) */
.lespadulac-popup-close:hover {
  transform: scale(1.3);
  color: #d10000;
}

/* Bouton personnalisable en bas de la popup */
#lespadulac-popup-btn {
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  font-family: inherit;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
  /* width, height, colors et taille police définis en inline styles via PHP */
}

/* Animation d’entrée */
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}
