/* vision-x-export 기본 스타일. 외주가 디자인 시스템 도입 시 대체 가능. */

* { box-sizing: border-box; }

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    margin: 0;
    color: #222;
    background: #fafafa;
}

/* ── header / nav ───────────────────────────────────────────────── */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
    background: #1f2a44;
    color: #fff;
}
.site-header .brand a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    font-size: 18px;
}
.site-nav {
    display: flex;
    align-items: center;
    gap: 20px;
}
.site-nav a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
}
.site-nav a:hover { color: #fff; }
.site-nav .login-id {
    color: #94a3b8;
    font-size: 13px;
    margin-left: 8px;
}

/* ── footer ─────────────────────────────────────────────────────── */
.site-footer {
    text-align: center;
    padding: 16px;
    color: #64748b;
    border-top: 1px solid #e5e7eb;
    margin-top: 40px;
}

/* ── /requests/new ──────────────────────────────────────────────── */
.page-requests-new {
    padding: 24px;
    max-width: 1400px;
    margin: 0 auto;
}
.page-requests-new h2 {
    margin: 0 0 8px;
}
.page-requests-new .hint {
    color: #64748b;
    font-size: 13px;
    margin: 0 0 16px;
}
.status {
    padding: 8px 12px;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: 4px;
    font-size: 13px;
    margin-bottom: 12px;
}
.map-container {
    width: 100%;
    height: 600px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background: #f3f4f6;
}
.detail-panel {
    margin-top: 16px;
    padding: 16px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
}
.detail-panel ul {
    list-style: none;
    padding: 0;
    margin: 12px 0;
    max-height: 300px;
    overflow-y: auto;
}
.detail-panel li {
    padding: 8px;
    border-bottom: 1px solid #f3f4f6;
    font-size: 13px;
}
.detail-panel li:last-child { border-bottom: none; }

/* 카메라 마커 / 클러스터 스타일은 static/js/lib/camera-marker-style.js 가 inline 으로 적용
   (count 별 색상/크기 단계 — vision-x-dms 와 일관). 별도 CSS class 없음. */
