@charset "UTF-8";

/* /ev/station (EV 네트워크) 페이지 전용 스타일 */

/* EV 네트워크 검색 */
.mt_60 { margin-top: 60px; }

/* 사이트 공통 .ipt 톤(#dae0e9 보더, 8px radius, hover/focus 인터랙션)을 차용한 통합형 검색창 */
.station-search-box { position: relative; margin: 20px 0 12px; max-width: 100%; }
.station-search-box .station-search-input {
    width: 100%; height: 56px; padding: 0 110px 0 20px;
    border: 1px solid #dae0e9; border-radius: 8px;
    font-size: 1.6rem; line-height: 2.4rem; color: #333; box-sizing: border-box;
    background: #fff; transition: border-color .15s, box-shadow .15s;
    -webkit-appearance: none; appearance: none;
}
.station-search-box .station-search-input::placeholder { color: #999; }
.station-search-box .station-search-input:hover { border-color: #2e7ce0; }
.station-search-box .station-search-input:focus {
    outline: 0; border-color: #000; color: #000;
    box-shadow: 0 0 0 1px #000 inset;
}
.station-search-box .station-search-clear,
.station-search-box .station-search-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    border: 0; cursor: pointer; padding: 0;
}
.station-search-box .station-search-clear {
    right: 56px; width: 26px; height: 26px;
    border-radius: 50%;
    background: #e1e1e1 url('/fo/img/icon-close1.svg') center/12px no-repeat;
    font-size: 0; color: transparent;
    display: none;
    transition: background-color .15s;
}
.station-search-box .station-search-clear:hover { background-color: #ccc; }
.station-search-box .station-search-clear.show { display: block; }
.station-search-box .station-search-btn {
    right: 8px; width: 40px; height: 40px;
    border-radius: 50%;
    background:
        url('/fo/img/icon-search.svg') center/22px no-repeat,
        linear-gradient(to right, #2e7ce0 -3%, #20c161 100%);
    transition: background-image .15s;
}
.station-search-box .station-search-btn:hover {
    background:
        url('/fo/img/icon-search.svg') center/22px no-repeat,
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        linear-gradient(to right, #2e7ce0 -3%, #20c161 100%);
}
.station-search-box .station-search-btn:focus { outline: 2px solid #000; outline-offset: 2px; }
@media (max-width: 480px) {
    .station-search-box .station-search-input { height: 48px; padding: 0 96px 0 16px; font-size: 1.4rem; }
    .station-search-box .station-search-clear { right: 48px; width: 22px; height: 22px; background-size: 10px; }
    .station-search-box .station-search-btn { right: 6px; width: 36px; height: 36px; background-size: 18px, auto; }
}

.station-result-info { padding: 8px 0 14px; font-size: 1.4rem; color: #666; border-bottom: 1px solid #ececec; }
.station-result-info strong { color: #2e7ce0; font-weight: 700; padding: 0 4px; }

.station-content { display: flex; gap: 24px; margin-top: 16px; }
.station-list-area { flex: 0 0 42%; max-width: 42%; }
.station-map-area  { flex: 1; min-height: 520px; position: relative; }
@media (max-width: 1024px) {
    .station-content { flex-direction: column; }
    .station-list-area { flex: 1; max-width: 100%; }
    .station-map-area  { min-height: 360px; }
}

.station-list { list-style: none; padding: 0; margin: 0; max-height: 520px; overflow-y: auto; border: 1px solid #ececec; border-radius: 4px; }
.station-item { padding: 16px 18px; border-bottom: 1px solid #ececec; cursor: pointer; transition: background-color .15s; }
.station-item:last-child { border-bottom: 0; }
.station-item:hover, .station-item.active { background: #f5f9ff; }
.station-item-head { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; flex-wrap: wrap; }
.station-item-no { display: inline-flex; width: 22px; height: 22px; border-radius: 50%; background: #2e7ce0; color: #fff; font-size: 1.2rem; font-weight: 700; align-items: center; justify-content: center; transition: background .15s, background-image .15s; }
.station-item:hover .station-item-no,
.station-item.active .station-item-no { background: linear-gradient(to right, #2e7ce0 -3%, #20c161 100%); }
.station-item-name { font-size: 1.6rem; font-weight: 600; color: #222; }
.station-badge { font-size: 1.1rem; padding: 2px 8px; border-radius: 10px; font-weight: 500; }
.station-badge.badge-self  { background: #eaf3ff; color: #2e7ce0; }
.station-badge.badge-other { background: #f3f0ff; color: #6f42c1; }
.station-item-body { font-size: 1.3rem; color: #666; line-height: 1.55; }
.station-item-row { margin: 2px 0; display: flex; gap: 8px; }
.station-label { color: #999; flex: 0 0 56px; }
.station-item-meta { margin-top: 6px; color: #888; font-size: 1.2rem; }
.station-item-meta span:not(:last-child)::after { content: " ㆍ "; color: #ccc; }
.station-item-warn { margin-top: 6px; color: #d9534f; font-size: 1.2rem; }

/* 빈 상태: 사이트 공통 .none-data1.none-data-icon1 그대로 사용. 사이드 패널이라 패딩만 축소 */
.station-list-area .none-data1 .none-data-inner { padding: 40px 0 50px; }

/* 페이지네이션은 사이트 공통 .paginate / .paginate-inner / .btn-paginate / .on 스타일 사용 (style.css 또는 common.css) */

.station-map { width: 100%; height: 100%; min-height: 520px; border: 1px solid #ececec; border-radius: 4px; background: #f5f5f5; }
.station-map-nokey {
    position: absolute; inset: 0; display: flex; flex-direction: column;
    align-items: center; justify-content: center; text-align: center;
    background: #f5f5f5; color: #888; border: 1px dashed #ccc; border-radius: 4px;
}
.station-map-nokey small { display: block; margin-top: 8px; font-size: 1.2rem; color: #aaa; }
