/* ===== 배불리 공통 스타일 =====
   Tailwind(유틸리티)로 못 다루는 전역 규칙과, JS로 동적 생성되는 마크업의 스타일만 둔다. */

/* 페이지 이동 시 흰 화면 깜빡임 제거 (뷰 트랜지션, 미지원 브라우저는 무시) */
@view-transition {
    navigation: auto;
}

::view-transition-old(root),
::view-transition-new(root) {
    animation-duration: .12s;
}

html {
    background-color: #fff;
}

/* 스크롤바 얇고 세련되게 (평소 은은 → 올리면 진해짐) */
* {
    scrollbar-width: thin;
    scrollbar-color: #e5e5e5 transparent;
}

*:hover {
    scrollbar-color: #c4c4c4 transparent;
}

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #e5e5e5;
    border-radius: 999px;
}

:hover::-webkit-scrollbar-thumb {
    background: #cfcfcf;
}

::-webkit-scrollbar-thumb:hover {
    background: #a3a3a3;
}

/* 모바일 가로 넘침 방지 (지도/그리드가 뷰포트를 밀어내는 것 차단) */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* ===== 지도 정보창 (네이버 지도 InfoWindow — JS로 삽입되는 마크업) ===== */
.iw {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
    font-size: 13px;
    line-height: 1.5;
    width: 250px;
    font-family: inherit;
}

.iw-title {
    font-size: 15px;
    font-weight: 700;
}

.iw-sub {
    color: #737373;
    font-size: 12px;
    margin-bottom: 8px;
}

.iw-menu-box {
    background: #fff7ed;
    border: 1px solid #ffedd5;
    border-radius: 10px;
    padding: 8px 8px 4px 8px;
    margin-bottom: 8px;
}

.iw-menu-label {
    font-size: 11px;
    font-weight: 700;
    color: #ea580c;
    margin-bottom: 5px;
}

.iw-chip {
    display: inline-block;
    background: #fff;
    border: 1px solid #ffedd5;
    border-radius: 8px;
    padding: 3px 8px;
    margin: 0 4px 4px 0;
    font-size: 12px;
    color: #404040;
}

.iw-daily {
    font-size: 12px;
    color: #737373;
    margin-bottom: 8px;
}

.iw-dist {
    color: #ea580c;
    font-weight: 600;
    font-size: 12px;
    margin-bottom: 8px;
}

.iw-link {
    display: block;
    text-align: center;
    background: #171717;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    border-radius: 10px;
    padding: 8px 0;
    text-decoration: none;
}

/* 지도 위 내 위치 마커 (파란 점) */
.my-loc-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #2563eb;
    border: 3px solid #fff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .25);
}
