#mapModal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#mapModal .modal-content {
  position: relative;
  background: #fff;
  border-radius: 8px;
  padding: 0.5rem;
  max-width: 90vw; 
  max-height: 90vh;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  display: flex;
  justify-content: center;
  align-items: center;
}

#mapModal .modal-content img {
  width: 100%;
  height: auto;   
  display: block;
}

#mapModal .modal-close {
  position: absolute;
  top: 0.25rem; right: 0.25rem;
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}