/* 카카오맵 커스텀 오버레이 스타일 */
.hs-map-overlay {
    position: relative;
    bottom: 50px;
    /* 마커 위로 띄우기 */
    background-color: #fff;
    border-radius: 8px;
    padding: 8px 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transform: translateX(-0.5px);
    /* 미세 위치 조정 */
}

.hs-map-overlay::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #fff;
}

.hs-map-label-text {
    color: #333;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: -0.5px;
}