/**
 * V2 Map - 메인 스타일
 */

/* ─── 지도 컨테이너 ─── */
.v2-map-wrap {
    position: relative;
    width: 100%;
    height: 100%;
}

.v2-map-container {
    width: 100%;
    height: 100%;
    background: #f0f2f5;
}

/* OL 기본 컨트롤 스타일 오버라이드 */
.v2-map-container .ol-control {
    background: none;
    border-radius: 4px;
    padding: 2px;
}

.v2-map-container .ol-control button {
    background: rgba(255, 255, 255, 0.95);
    color: #4b5563;
    font-size: 16px;
    width: 28px;
    height: 28px;
    border: none;
    cursor: pointer;
    border-radius: 3px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.v2-map-container .ol-control button:hover {
    background: #e8f0fe;
    color: #1565c0;
}

.v2-map-container .ol-zoom {
    top: 10px;
    left: auto;
    right: 10px;
}

.v2-map-container .ol-scale-line {
    bottom: 36px;
    left: 10px;
    background: none;
}

.v2-map-container .ol-scale-line-inner {
    border: 2px solid #6b7280;
    border-top: none;
    color: #4b5563;
    font-size: 11px;
    text-shadow: 0 1px 2px rgba(255,255,255,0.8);
}

/* OL 어트리뷰션 숨김 */
.v2-map-container .ol-attribution {
    display: none;
}

/* ─── 하단 좌표/줌 정보 ─── */
.v2-coord-box {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    padding: 4px 12px;
    gap: 16px;
    font-size: 11px;
    color: #6b7280;
    font-family: 'Consolas', 'Menlo', monospace;
    z-index: 10;
    border-radius: 4px;
    pointer-events: none;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    backdrop-filter: blur(8px);
}

.v2-coord-box span {
    white-space: nowrap;
}
