.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Fondo semi-transparente */
  justify-content: center;
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 50px;
  border: 1px solid #888;
  width: 30%;
  max-height: 100%;
  border-radius: 46px;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  position: absolute;
  top: 15px;
  right: 40px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}