/* =================================================================
   MAP TILE GAP FIX
================================================================= */
.custom-google-map {
  /* darkMapStyle[0].stylers[0].color 과 동일하게 */
  background-color: #18202a;
}
.custom-google-map .gm-style .gm-tile {
  /* GPU 합성 + 픽셀 렌더링 강제 */
  transform: translateZ(0) !important;
  image-rendering: pixelated !important;
  /* 타일 배경색도 다크와 맞추기 */
  background-color: #18202a !important;
  /* 불필요한 여백/테두리 제거 */
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  outline: none !important;
}

/* 개발/테스트용: Keyboard shortcuts 안내 숨김 */
.gm-control-active {
  display: none !important;
}

.my-location-btn {
  position: absolute;
  right: 10px;
  bottom: calc(15vh + 110px);
  z-index: 20;
  background: #2a2a2a;
  border: none;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: box-shadow 0.18s, background 0.18s;
}
.my-location-btn:hover {
  background: #2a2a2a;
  box-shadow: 0 4px 16px rgba(80,80,80,0.18);
}

.map-legend-test {
  position: absolute;
  top: 10px;
  left: 5px;
  background: rgba(32,32,32,0.7);
  color: #fff;
  border-radius: 12px;
  padding: 12px 18px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 14px;
  z-index: 30;
}
.legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}
.legend-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
  border: 1.5px solid #fff;
}
.map-legend-test .legend-item:last-child {
  margin-bottom: 0;
}

.map-legend-horizontal {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  border-radius: 12px;
  padding: 8px 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  font-size: 14px;
  z-index: 30;
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
.map-legend-horizontal .legend-item {
  display: flex;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.5rem;
  font-weight: 700;
  color: #fff;
}
.map-legend-horizontal .legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  border: 1.5px solid #fff;
} 