/* FISINGCLUB PATCH 30.0.53.9.1: TALLER AND CLEARER INITIAL SEARCH SCROLL */
@media (min-width:761px){
    /* 검색 전에는 비어 있는 결과목록이 높이를 차지하지 않게 합니다. */
    .fc-map-explorer:not(.is-search-controls-collapsed) .map-result-list:empty{
        display:none!important;
        flex:0 0 0!important;
        min-height:0!important;
        max-height:0!important;
        overflow:hidden!important
    }

    /* 초기 검색조건 영역이 패널 대부분을 사용하도록 높이를 확보합니다. */
    .fc-map-explorer:not(.is-search-controls-collapsed) .map-search-controls{
        flex:1 1 auto!important;
        min-height:360px!important;
        scrollbar-gutter:stable;
        scrollbar-width:auto;
        scrollbar-color:#678f9d #e9f1f3
    }

    /* 스크롤 존재 여부를 바로 알아볼 수 있도록 굵고 선명하게 표시합니다. */
    .fc-map-explorer .map-search-controls::-webkit-scrollbar{
        width:14px
    }
    .fc-map-explorer .map-search-controls::-webkit-scrollbar-track{
        background:#e9f1f3;
        border-left:1px solid #d7e4e8
    }
    .fc-map-explorer .map-search-controls::-webkit-scrollbar-thumb{
        min-height:88px;
        border:3px solid #e9f1f3;
        border-radius:999px;
        background:#678f9d
    }
    .fc-map-explorer .map-search-controls::-webkit-scrollbar-thumb:hover{
        background:#4d7786
    }

    /* 안내문 아래의 불필요한 빈 공간도 제거합니다. */
    .fc-map-explorer:not(.is-search-controls-collapsed) .map-search-guide{
        flex:0 0 auto
    }
}

@media (max-width:760px){
    .fc-map-explorer[data-mobile-view="list"]:not(.is-search-controls-collapsed) .map-result-list:empty{
        display:none!important;
        min-height:0!important
    }
    .fc-map-explorer[data-mobile-view="list"] .map-search-controls{
        min-height:340px!important;
        scrollbar-gutter:stable;
        scrollbar-width:auto;
        scrollbar-color:#678f9d #e9f1f3
    }
    .fc-map-explorer[data-mobile-view="list"] .map-search-controls::-webkit-scrollbar{
        width:12px
    }
    .fc-map-explorer[data-mobile-view="list"] .map-search-controls::-webkit-scrollbar-track{
        background:#e9f1f3
    }
    .fc-map-explorer[data-mobile-view="list"] .map-search-controls::-webkit-scrollbar-thumb{
        min-height:72px;
        border:3px solid #e9f1f3;
        border-radius:999px;
        background:#678f9d
    }
}
