#mapContainer {
    position: relative;
    width: 100%;
    height: 900px; /* or whatever height you want */
}

#map {
    width: 100%;
    height: 100%;
}

#infoPanel {
    position: absolute;
    top: 0;
    left: 0;
    width: 320px;
    height: 100%;
    background: #fff;
    box-shadow: 2px 0 5px rgba(0,0,0,0.3);
    transform: translateX(-200%);
    transition: transform 0.3s ease;
    overflow-y: auto;
    padding: 15px;
    z-index: 10;
}

#infoPanel.open {
    transform: translateX(0);
}

.close-btn {
	cursor: pointer;
}

#panelContent h2 {
  font-size: 1.2rem;
  margin-top: 10px;
}

#panelContent img.people-group {
  margin-bottom: 10px;
}

#panelContent ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}

#panelContent ul li {
  margin-bottom: 0.8rem;
  line-height: 1.1rem;
  width: calc(50% - 8px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  flex: auto;
  font-size: .9rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.8rem;
}

#panelContent ul li span {
  color: #9e9e9e;
  font-size: 12px;
}

#panelContent ul li span::after {
  content: "\A"; /* Represents a newline character */
  white-space: pre; /* Preserves whitespace, including the newline */
}
