/* Popup centrado */
.poll-modal {
  display: none; 
  position: fixed;
  z-index: 9999;
  left: 50%;
  top: 55%; /* <-- Cambiado de 50% a 55% para bajarlo */
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 520px;
  padding: 0 10px;
  box-sizing: border-box;
}


/* Caja popup */
.poll-content {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: fadeIn 0.4s ease;
  /* ❌ sin fondo ni sombra */
}

/* Botón cerrar */
/* Botón cerrar */
.poll-close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  color: #000; /* Icono en negro */
  background: #fff; /* Fondo blanco */
  border-radius: 50%; /* Redondeado */
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2); /* Opcional, para resaltar */
}


/* Animación */
@keyframes fadeIn {
  from {opacity: 0; transform: scale(0.9);}
  to   {opacity: 1; transform: scale(1);}
}

/* Responsive */
@media (max-width: 600px) {
  .poll-modal {
    max-width: 90%;
  }
  .poll-content {
    height: 80vh;
  }
  .poll-content iframe {
    height: 100%;
  }
}