/* Contenedor principal (fondo oscuro) */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none; /* Oculto por defecto */
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Caja blanca del modal */
.modal-content-ws {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  position: relative;
}

/* Contenedor de enlaces con Flexbox */
.links-container {
  display: flex;
  flex-direction: column; /* Dirección en columna */
  justify-content: center; /* Centrado vertical */
  align-items: center;     /* Centrado horizontal */
  gap: 15px;               /* Espacio entre botones */
}

/* Estilo de los enlaces */
.location-link {
  text-decoration: none;
  color: #333;
  padding: 10px 20px;
  border: 2px solid #007bff;
  border-radius: 8px;
  width: 100%;
  font-weight: bold;
  transition: all 0.3s ease;
}

.location-link:hover {
  background: #007bff;
  color: white;
}

.close-btn {
  margin-top: 20px;
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  text-decoration: underline;
}
