.map-container {
  height: 65vh;
  position: relative;
  margin-bottom: 10px;
}

#map {
  width: 100%;
  height: 100%;
  border: 1px solid blue;
  background-color: #f5f5f5;
}

#customInfo {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  pointer-events: none;
}

.info-window-content {
  font-size: 18px;
  min-width: 140px;
}

#customInfo .close-btn {
  position: absolute;
  top: 2px;
  right: 2px;
  font-size: 14px;
  cursor: pointer;
  pointer-events: auto;
  padding: 4px;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#customInfo .close-btn:hover {
  opacity: 1;
}

.legend {
  padding: 8px;
  font-size: 17px;
}

.blue-dot,
.green-dot,
.orange-dot {
  font-size: 24px;
  margin-right: 10px;
  line-height: 1;
}

.blue-dot { color: #4285F4; }
.green-dot { color: #0F9D58; }
.orange-dot { color: #FF7043; }
