/* Estilos básicos */
body {
  font-family: Arial, sans-serif;
}

/* Estilo del texto que dispara el popup */
.popup-trigger {
  color: blue;
  text-decoration: underline;
  cursor: pointer;
}

/* Modal: fondo semitransparente */
.modal {
  display: none; /* oculto por defecto */
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto; /* importante para scroll en pantallas pequeñas */
  background-color: rgba(0, 0, 0, 0.5);
}

/* Contenido del modal */
.modal-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  max-height: 70vh;
  overflow-y: auto; /* scroll interno */
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Botón de cerrar */
.close-btn {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close-btn:hover {
  color: black;
}

/* Contenido con scroll */
.scrollable-content p {
  margin-bottom: 1em;
}
