@media screen and (max-width: 1032px) {



    .land-info-panel {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100dvh;
        max-height: 100vh;
        border-radius: 0;
        z-index: 2001;
        box-shadow: none;

        /* 👇 애니메이션 관련 추가 */
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;


    }
    .land-info-panel.land-info-panel-show {
        transform: translateY(0);
        opacity: 1;
    }


    .land-info-panel-collapsed .fixed-action-buttons {
        display: flex !important;
    }

    .land-info-scrollable {
        overflow-y: auto;

        /* 위쪽 padding 유지 */
        padding: 16px 20px;

        /* 아래쪽 안전 영역을 고려한 패딩 (고정 버튼 + 소프트키) */
        padding-bottom: calc(80px + env(safe-area-inset-bottom));

        /* 높이도 안전하게 계산 (뷰포트 전체 - 고정 버튼 예상 높이) */
        height: calc(100dvh - 80px - env(safe-area-inset-bottom));
    }

    .fixed-action-buttons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        padding: 12px 16px calc(env(safe-area-inset-bottom) + 12px);
        z-index: 2001;
    }





    .mini-map {
        width: 100%; /* 또는 100% */
        height: 200px;
    }


    /* 일반지도, 지형지도 선택 버튼  */
    #mapTypeSelector {
        position: fixed;
        bottom: 20px;
        left: 10px;
        top: auto;
        right: auto;
        flex-direction: row;
        background: rgba(255, 255, 255, 0.9);
        padding: 6px;
        border-radius: 10px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    }

    .mapTypeButton {
        width: auto;
        padding: 0 8px;
        height: 32px;
        flex-direction: row;
        align-items: center;
        gap: 6px;
    }

    .mapTypeButton img {
        display: none; /* ✅ 이미지 숨기기 */
    }

    .mapTypeButton span {
        font-size: 13px;
    }

    .search-panel {
        position: fixed;
        top: 59px; /* ✅ 헤더 바로 아래에 붙임 */
        left: 0;
        width: 100%;
        max-height: calc(100dvh - 56px); /* ✅ 남은 화면만큼만 패널 표시 */
        border-radius: 0;
        padding: 16px;
        overflow-y: auto;
        z-index: 2000;
        transition: max-height 0.3s ease;
    }

    .search-dropdown {
        display: none;
        height: calc(100dvh - 124px); /* dropdown만 열릴 때 scroll 가능하게 */
    }

    #mapButtonGroup {
        top: 80px;

    }




    .sals-info-panel {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100dvh;
        max-height: 100vh;
        border-radius: 0;
        z-index: 2001;
        box-shadow: none;

        /* 👇 애니메이션 관련 추가 */
        transform: translateY(100%);
        opacity: 0;
        transition: transform 0.3s ease, opacity 0.3s ease;


    }
    .sals-info-panel.sals-info-panel-show {
        transform: translateY(0);
        opacity: 1;
    }


    .sals-info-scrollable {
        overflow-y: auto;

        /* 위쪽 padding 유지 */
        padding: 16px 20px;

        /* 아래쪽 안전 영역을 고려한 패딩 (고정 버튼 + 소프트키) */
        padding-bottom: calc(80px + env(safe-area-inset-bottom));

        /* 높이도 안전하게 계산 (뷰포트 전체 - 고정 버튼 예상 높이) */
        height: calc(100dvh - 80px - env(safe-area-inset-bottom));
    }


    .pano-view {
        width: 100vw;
        height: 50dvh;
        top: 0;
        right: 0;
    }
    #pano {
        width: 100vw;
        height: 50dvh;
        border-radius: 0;
    }
    #panoClose {
        top: 70px;
        right: 10px;
    }

}

@media screen and (max-width: 320px) {
    .toji-btn.full {
        font-size: 11px;
    }
}
