/* ── Reset ──────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', 'Segoe UI', Arial, sans-serif; background: #0f172a; color: #e2e8f0; font-size: 14px; line-height: 1.5; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font: inherit; }
input, select, textarea { font: inherit; }

/* ── App shell (sidebar + main) ─────────────────────────────────────────────── */
.app-shell { display: flex; min-height: 100vh; }

/* ── Sidebar ────────────────────────────────────────────────────────────────── */
.sidebar {
    width: 220px; min-width: 220px;
    background: #1e293b;
    border-right: 1px solid #334155;
    display: flex; flex-direction: column;
    position: sticky; top: 0; height: 100vh;
    transition: transform 0.25s ease;
    z-index: 100;
}
.sidebar-brand {
    display: flex; align-items: center; gap: 10px;
    padding: 20px 18px 16px;
    border-bottom: 1px solid #334155;
    font-size: 15px; font-weight: 700; color: #f8fafc;
}
.sidebar-brand-icon { font-size: 22px; }
.sidebar-nav { flex: 1; padding: 12px 0; overflow-y: auto; }
.sidebar-link {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    color: #94a3b8; font-size: 14px; font-weight: 500;
    border-left: 3px solid transparent;
    transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.sidebar-link:hover { background: #0f172a; color: #f1f5f9; }
.sidebar-link.active { background: #0f172a; color: #60a5fa; border-left-color: #3b82f6; }
.sicon { font-size: 16px; width: 20px; text-align: center; }
.sidebar-footer {
    padding: 14px 16px;
    border-top: 1px solid #334155;
    display: flex; flex-direction: column; gap: 10px;
}
.sidebar-user { display: flex; align-items: center; gap: 10px; }
.sidebar-user-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: #3b82f6; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.sidebar-user-name { font-size: 13px; font-weight: 600; color: #f1f5f9; }
.sidebar-user-role { font-size: 11px; color: #64748b; }
.sidebar-logout-btn {
    width: 100%; padding: 8px; border-radius: 7px;
    background: #0f172a; color: #94a3b8; font-size: 13px;
    border: 1px solid #334155;
    transition: background 0.15s, color 0.15s;
}
.sidebar-logout-btn:hover { background: #ef4444; color: #fff; border-color: #ef4444; }

/* ── Main area ───────────────────────────────────────────────────────────────── */
.main-area { flex: 1; min-width: 0; display: flex; flex-direction: column; }

/* ── Topbar ─────────────────────────────────────────────────────────────────── */
.topbar {
    height: 56px; min-height: 56px;
    background: #1e293b; border-bottom: 1px solid #334155;
    display: flex; align-items: center; gap: 14px;
    padding: 0 20px; position: sticky; top: 0; z-index: 50;
}
.sidebar-toggle {
    display: none; background: none; color: #94a3b8;
    font-size: 20px; padding: 4px 6px; border-radius: 6px;
}
.topbar-title { font-size: 15px; font-weight: 600; color: #f1f5f9; flex: 1; }
.topbar-right { display: flex; align-items: center; gap: 10px; }
.topbar-badge { padding: 3px 10px; border-radius: 999px; font-size: 11px; font-weight: 700; }
.topbar-badge.utility { background: #fef3c7; color: #92400e; }
.topbar-user { font-size: 13px; color: #64748b; }

/* ── Page ────────────────────────────────────────────────────────────────────── */
.page-container { padding: 24px; flex: 1; }
.page-header { margin-bottom: 22px; }
.page-header-split { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.page-header h1 { font-size: 24px; font-weight: 700; color: #f1f5f9; margin-bottom: 4px; }
.page-header p { color: #64748b; }
.header-actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── Alert boxes ─────────────────────────────────────────────────────────────── */
.alert-box {
    padding: 12px 16px; border-radius: 8px; margin-bottom: 16px;
    font-size: 14px; font-weight: 500;
}
.alert-box.success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.alert-box.error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }

/* ── Cards ──────────────────────────────────────────────────────────────────── */
.section-card, .incident-strip-card {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 12px;
    padding: 18px;
    margin-bottom: 20px;
}
.section-card-header {
    display: flex; align-items: center; justify-content: space-between;
    gap: 12px; margin-bottom: 16px;
}
.section-card-header h2 { font-size: 16px; font-weight: 700; color: #f1f5f9; }

/* ── Location grid ──────────────────────────────────────────────────────────── */
.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}
.location-card {
    background: #1e293b; border: 1px solid #334155; border-radius: 12px; padding: 18px;
    cursor: pointer; transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.location-card:hover { border-color: #3b82f6; box-shadow: 0 8px 24px rgba(59,130,246,0.12); transform: translateY(-2px); }
.location-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; }
.location-card-header h2 { font-size: 17px; font-weight: 700; color: #f1f5f9; }
.location-meta { font-size: 13px; color: #64748b; margin-bottom: 12px; }
.location-stats { display: grid; gap: 6px; margin-bottom: 14px; }
.stat-row { display: flex; justify-content: space-between; font-size: 13px; }
.stat-label { color: #64748b; }
.stat-row strong { color: #f1f5f9; }
.text-alert { color: #ef4444 !important; }
.location-actions { display: flex; gap: 8px; }

/* ── Status pills ───────────────────────────────────────────────────────────── */
.status-pill {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 3px 9px; border-radius: 999px;
    font-size: 11px; font-weight: 700; white-space: nowrap;
}
.status-pill.active   { background: #dcfce7; color: #166534; }
.status-pill.inactive { background: #1e293b; color: #64748b; border: 1px solid #334155; }
.status-pill.alert    { background: #fee2e2; color: #b91c1c; }

/* ── Buttons ────────────────────────────────────────────────────────────────── */
.btn-primary, .btn-secondary, .btn-danger {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 8px 14px; border-radius: 7px; font-weight: 600; font-size: 13px;
    transition: 0.15s ease; white-space: nowrap;
}
.btn-primary   { background: #3b82f6; color: #fff; }
.btn-primary:hover { background: #2563eb; }
.btn-secondary { background: #0f172a; color: #94a3b8; border: 1px solid #334155; }
.btn-secondary:hover { background: #1e293b; color: #f1f5f9; border-color: #475569; }
.btn-danger    { background: #450a0a; color: #fca5a5; border: 1px solid #7f1d1d; }
.btn-danger:hover { background: #7f1d1d; color: #fff; }
.btn-full { width: 100%; }
.btn-sm  { padding: 6px 12px; font-size: 12px; }
.btn-xs  { padding: 4px 9px;  font-size: 11px; border-radius: 5px; }

/* ── Forms ───────────────────────────────────────────────────────────────────── */
.management-layout { display: grid; gap: 20px; }
.app-form { display: grid; gap: 14px; }
.form-grid { display: grid; gap: 14px; }
.form-grid.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-group { display: grid; gap: 6px; }
.form-group.full-width { grid-column: 1 / -1; }
.form-group label { font-size: 13px; font-weight: 600; color: #94a3b8; }
.form-input {
    width: 100%; min-height: 40px;
    background: #0f172a; border: 1px solid #334155; border-radius: 7px;
    padding: 8px 12px; color: #f1f5f9;
    transition: border-color 0.15s, box-shadow 0.15s;
}
.form-input:focus { outline: none; border-color: #3b82f6; box-shadow: 0 0 0 3px rgba(59,130,246,0.15); }
.form-input option { background: #1e293b; }
.form-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 4px; }

/* ── Tables ──────────────────────────────────────────────────────────────────── */
.table-wrap { overflow-x: auto; }
.app-table { width: 100%; border-collapse: collapse; }
.app-table th { padding: 10px 12px; text-align: left; font-size: 12px; font-weight: 700; color: #64748b; background: #0f172a; border-bottom: 1px solid #334155; white-space: nowrap; }
.app-table td { padding: 10px 12px; text-align: left; font-size: 13px; color: #cbd5e1; border-bottom: 1px solid #1e293b; vertical-align: middle; }
.app-table tr:hover td { background: #0f172a33; }
.table-link { color: #60a5fa; }
.table-link:hover { text-decoration: underline; }
.mono { font-family: monospace; font-size: 12px; }
.action-row { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }

/* ── Empty state ─────────────────────────────────────────────────────────────── */
.empty-state { text-align: center; padding: 40px 20px; }
.empty-icon { font-size: 40px; margin-bottom: 12px; }
.empty-state h2 { font-size: 18px; color: #f1f5f9; margin-bottom: 8px; }
.empty-state p { color: #64748b; }
.empty-actions { margin-top: 16px; }
.compact-empty { padding: 22px; }

/* ── Camera grid ────────────────────────────────────────────────────────────── */
.camera-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}
.camera-tile {
    border: 1px solid #334155; border-radius: 12px; overflow: hidden;
    background: #1e293b; display: flex; flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.camera-tile:hover { border-color: #475569; box-shadow: 0 8px 20px rgba(0,0,0,0.3); transform: translateY(-1px); }
.camera-tile-alert { border-color: #ef4444 !important; box-shadow: 0 0 0 2px rgba(239,68,68,0.25) !important; }
.camera-tile.dragging { opacity: 0.4; transform: scale(0.97); }

.camera-preview {
    position: relative; height: 190px; background: #0f172a;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; border-bottom: 1px solid #334155;
}
.camera-image { width: 100%; height: 100%; object-fit: cover; display: block; }
.camera-offline-overlay {
    position: absolute; inset: 0;
    background: #0f172a;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 8px;
}
.offline-icon { font-size: 28px; opacity: 0.5; }
.offline-label { font-size: 13px; font-weight: 700; color: #475569; letter-spacing: 0.05em; }
.tile-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%;
    pointer-events: none;
}
.camera-enlarge-btn {
    position: absolute; top: 8px; right: 8px;
    background: rgba(15,23,42,0.8); color: #94a3b8;
    border: 1px solid #475569; border-radius: 6px;
    width: 30px; height: 30px; font-size: 16px;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; transition: background 0.15s, color 0.15s;
}
.camera-enlarge-btn:hover { background: rgba(15,23,42,0.95); color: #fff; }
.tile-alert-badge {
    position: absolute; bottom: 8px; left: 8px;
    background: #ef4444; color: #fff;
    font-size: 11px; font-weight: 700;
    padding: 3px 8px; border-radius: 5px;
    display: flex; align-items: center; gap: 4px;
    animation: pulse-badge 1.2s infinite;
}
@keyframes pulse-badge { 0%,100% { opacity:1; } 50% { opacity:0.6; } }

.camera-info { padding: 12px 14px 14px; display: grid; gap: 7px; }
.camera-title-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.camera-title-row h3 { font-size: 14px; font-weight: 700; color: #f1f5f9; flex: 1; min-width: 0; overflow-wrap: anywhere; }
.camera-meta { font-size: 11px; color: #475569; }
.camera-status-row { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.camera-utility-row { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 4px; }
.muted-text { font-size: 13px; color: #64748b; }

/* ── Incident strip ──────────────────────────────────────────────────────────── */
.incident-strip-card { margin-bottom: 20px; }
.incident-strip-list { margin-top: 12px; max-height: 200px; overflow-y: auto; display: grid; gap: 8px; }
.incident-strip-item {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    border: 1px solid #334155; border-radius: 8px; padding: 10px 12px;
    background: #0f172a; transition: border-color 0.2s;
}
.incident-active { border-color: #ef4444 !important; background: #1a0a0a; }
.incident-strip-main { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; min-width: 0; }
.incident-strip-camera { font-size: 13px; font-weight: 700; color: #f1f5f9; }
.incident-strip-type   { font-size: 13px; color: #94a3b8; }
.incident-strip-datetime { font-size: 12px; color: #64748b; }
.incident-strip-sep    { color: #334155; }
.incident-strip-side   { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }

/* ── Modal (generic) ─────────────────────────────────────────────────────────── */
.modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center; z-index: 9990;
}
.modal-dialog {
    background: #1e293b; border: 1px solid #334155; border-radius: 12px;
    width: min(90vw, 560px); max-height: 90vh; overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.modal-dialog.modal-lg { width: min(90vw, 780px); }
.modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px; border-bottom: 1px solid #334155;
}
.modal-header h3 { font-size: 16px; font-weight: 700; color: #f1f5f9; }
.modal-close {
    background: none; color: #64748b; font-size: 22px;
    width: 32px; height: 32px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
}
.modal-close:hover { background: #0f172a; color: #fff; }

/* ── Camera enlarge modal ───────────────────────────────────────────────────── */
.camera-modal { position: fixed; inset: 0; display: none; z-index: 9999; }
.camera-modal.is-open { display: block; }
.camera-modal-backdrop { position: absolute; inset: 0; background: rgba(0,0,0,0.75); }
.camera-modal-dialog {
    position: relative; width: min(95vw, 1400px); max-height: 94vh;
    margin: 3vh auto; background: #1e293b; border-radius: 12px; overflow: hidden;
    box-shadow: 0 24px 80px rgba(0,0,0,0.5); z-index: 1;
    border: 1px solid #334155;
}
.camera-modal-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 16px; border-bottom: 1px solid #334155; background: #1e293b;
}
.camera-modal-header h3 { font-size: 16px; color: #f1f5f9; font-weight: 700; }
.camera-modal-actions { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.camera-modal-close {
    background: #0f172a; color: #94a3b8; border: 1px solid #334155;
    border-radius: 7px; width: 34px; height: 34px; font-size: 22px;
    display: flex; align-items: center; justify-content: center;
}
.camera-modal-close:hover { background: #ef4444; color: #fff; border-color: #ef4444; }
.camera-modal-body { padding: 12px; background: #0f172a; display: flex; align-items: center; justify-content: center; }
.camera-modal-stage { position: relative; }
.camera-modal-image { width: 100%; max-height: 78vh; object-fit: contain; display: block; border-radius: 8px; background: #0f172a; }
.camera-modal-canvas {
    position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none;
}
.camera-modal-canvas.is-editing { pointer-events: auto; cursor: crosshair; }
.camera-modal-footer { padding: 10px 16px; border-top: 1px solid #334155; background: #1e293b; }

/* ── Login ───────────────────────────────────────────────────────────────────── */
.login-body { background: #0f172a; display: flex; align-items: center; justify-content: center; min-height: 100vh; }
.login-wrap { width: 100%; max-width: 400px; padding: 24px; }
.login-card { background: #1e293b; border: 1px solid #334155; border-radius: 16px; padding: 36px 32px; }
.login-logo { font-size: 40px; text-align: center; margin-bottom: 10px; }
.login-title { font-size: 22px; font-weight: 700; color: #f1f5f9; text-align: center; margin-bottom: 6px; }
.login-sub { font-size: 14px; color: #64748b; text-align: center; margin-bottom: 28px; }

/* ── Utility summary ─────────────────────────────────────────────────────────── */
.utility-grid { display: grid; gap: 20px; }
.summary-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.summary-item { background: #0f172a; border: 1px solid #334155; border-radius: 10px; padding: 16px; display: grid; gap: 4px; }
.summary-item strong { font-size: 26px; color: #f1f5f9; }
.summary-label { font-size: 12px; color: #64748b; }

/* ── Scrollbars ──────────────────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #0f172a; }
::-webkit-scrollbar-thumb { background: #334155; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #475569; }

/* ── Responsive ──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .sidebar { position: fixed; left: 0; top: 0; transform: translateX(-100%); }
    .sidebar.open { transform: translateX(0); }
    .sidebar-toggle { display: flex; }
    .main-area { width: 100%; }
    .form-grid.two-col, .summary-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
    .page-container { padding: 14px; }
    .camera-grid { grid-template-columns: 1fr; }
    .page-header-split { flex-direction: column; }
    .header-actions, .action-row { flex-wrap: wrap; }
}

/* ── ROI status pills ────────────────────────────────────────────────────────── */
.camera-roi-row { margin-top: 2px; }
.status-pill.roi-set     { background: #dcfce7; color: #166534; }
.status-pill.roi-missing { background: #fee2e2; color: #991b1b; }

/* ── Incidents list page ─────────────────────────────────────────────────────── */
.incidents-filters {
    display: flex; gap: 10px; flex-wrap: wrap; align-items: flex-end;
    background: #1e293b; border: 1px solid #334155; border-radius: 10px;
    padding: 14px 16px; margin-bottom: 18px;
}
.incidents-filters .form-group { margin: 0; min-width: 160px; }
.incidents-filters .form-group label { font-size: 11px; }
.filter-actions { display: flex; gap: 8px; align-items: flex-end; margin-left: auto; }

.incidents-table-card { background: #1e293b; border: 1px solid #334155; border-radius: 12px; overflow: hidden; }
.incidents-table-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 18px; border-bottom: 1px solid #334155;
}
.incidents-table-header h2 { font-size: 15px; font-weight: 700; color: #f1f5f9; }

.pagination {
    display: flex; align-items: center; justify-content: space-between;
    padding: 12px 18px; border-top: 1px solid #334155;
    font-size: 13px; color: #64748b;
}
.pagination-pages { display: flex; gap: 4px; }
.page-btn {
    min-width: 32px; height: 32px; border-radius: 6px; padding: 0 8px;
    background: #0f172a; border: 1px solid #334155; color: #94a3b8;
    font-size: 13px; display: flex; align-items: center; justify-content: center;
    transition: 0.15s;
}
.page-btn:hover { background: #1e293b; color: #f1f5f9; }
.page-btn.active { background: #3b82f6; color: #fff; border-color: #3b82f6; }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

/* ── Stat cards (dashboard + analytics) ─────────────────────────────────────── */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 14px;
}
.stat-card {
    background: #1e293b; border: 1px solid #334155; border-radius: 12px;
    padding: 16px; display: flex; align-items: center; gap: 14px;
    transition: border-color 0.15s;
}
.stat-card:hover { border-color: #475569; }
.stat-card-icon {
    width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.stat-card-body { min-width: 0; }
.stat-card-val { font-size: 26px; font-weight: 800; color: #f1f5f9; line-height: 1.1; }
.stat-card-label { font-size: 12px; color: #64748b; margin-top: 2px; }
.stat-card-sub { font-size: 11px; margin-top: 2px; }
.text-alert { color: #ef4444 !important; }

/* ── Chart cards ─────────────────────────────────────────────────────────────── */
.chart-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 900px) { .chart-grid-2 { grid-template-columns: 1fr; } }
.chart-card {
    background: #1e293b; border: 1px solid #334155; border-radius: 12px;
    padding: 16px; position: relative;
}
.chart-card-header { margin-bottom: 12px; }
.chart-card-header h3 { font-size: 14px; font-weight: 700; color: #f1f5f9; }

/* ── Verification pills ──────────────────────────────────────────────────────── */
.status-pill.verified-fraud { background: #fecaca; color: #991b1b; }
.status-pill.false-pos      { background: #fef3c7; color: #92400e; }
.status-pill.unverified     { background: #e2e8f0; color: #475569; }
.btn-success {
    background: #16a34a; color: #fff; border-radius: 6px;
    padding: 4px 10px; font-size: 12px; font-weight: 600;
    transition: background 0.15s;
}
.btn-success:hover { background: #15803d; }
.btn-active { background: #3b82f6 !important; color: #fff !important; border-color: #3b82f6 !important; }

/* ── Incident thumbnail ──────────────────────────────────────────────────────── */
.inc-thumb {
    width: 64px; height: 44px; object-fit: cover; border-radius: 4px;
    cursor: zoom-in; border: 1px solid #334155; transition: opacity 0.15s;
}
.inc-thumb:hover { opacity: 0.8; }

/* ── Large modal ─────────────────────────────────────────────────────────────── */
.modal-box.large-modal { max-width: 900px; width: 95vw; }

/* ── Map page ─────────────────────────────────────────────────────────────────── */
.map-container {
    height: 480px; border-radius: 12px; overflow: hidden;
    border: 1px solid #334155; margin-bottom: 4px;
}
.map-no-coords-banner {
    background: #1e293b; border: 1px solid #f59e0b; border-radius: 10px;
    padding: 14px 18px; color: #f59e0b; font-size: 14px; margin-bottom: 20px;
}
.map-no-coords-banner a { color: #60a5fa; text-decoration: underline; }
.map-legend-item { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #94a3b8; }
.map-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.map-dot.green { background: #22c55e; }
.map-dot.red   { background: #ef4444; }
.map-dot.gray  { background: #64748b; }
.map-cards-grid {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px;
}
.map-loc-card {
    background: #1e293b; border: 1px solid #334155; border-radius: 10px;
    padding: 14px; cursor: pointer; transition: border-color 0.15s, transform 0.1s;
}
.map-loc-card:hover { border-color: #60a5fa; transform: translateY(-1px); }
.map-loc-card.alert-border { border-color: #ef444480; }
.map-loc-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 8px; }
.map-loc-name { font-size: 14px; font-weight: 700; color: #f1f5f9; }
.map-loc-stats { font-size: 13px; color: #94a3b8; }
.map-loc-stats div { display: flex; justify-content: space-between; }
