.popup {
  display: none; /* oculto por defecto */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  width: 800px;
}

.popup-p {
  color: #333; 
}

.popup-select {
  margin: 20px 0;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

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

button:hover {
  background-color: #005bb5;
}