/* Ajusta el contenedor del formulario */
.survey-container iframe {
  width: 100% !important;     /* Que ocupe todo el ancho del contenedor */
  max-width: 600px;            /* Límite de ancho opcional */
  height: 500px !important;    /* Altura más pequeña para quitar scroll */
  overflow: hidden;            /* Oculta scroll interno */
  border: none;                /* Quita el borde si aparece */
  display: block;
  margin: 0 auto;               /* Centrar horizontalmente */
}

/* Si el iframe tiene un ID específico */
#surveyIframeID {
  width: 100% !important;
  height: 500px !important;
  overflow: hidden;
  border: none;
}
