/* Estilos básicos para el pop-up */
.popup {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  border: 1px solid #ccc;
  padding: 20px;
  max-width: 90%;
  width: 400px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

.popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.popup h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.popup p {
  font-size: 1em;
  margin-bottom: 20px;
}

.popup label {
  display: block;
  margin-bottom: 5px;
}

.popup select,
.popup textarea,
.popup input[type="email"] {
  width: 100%;
  padding: 8px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.popup button {
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.popup button:hover {
  background-color: #45a049;
}

.popup-close {
  cursor: pointer;
  font-size: 1.5em;
  font-weight: bold;
}

.popup-close:hover {
  color: red;
}

@media (max-width: 600px) {
  .popup {
    width: 90%;
  }
}
