:root {
    --bg-primary: #0F1114;
    --bg-secondary: #161920;
    --bg-tertiary: #1C2028;
    --bg-surface: #22262E;
    --bg-hover: #2A2F38;
    --border: #2E3440;
    --border-light: #3B4252;

    --text-primary: #ECEFF4;
    --text-secondary: #A0A8B8;
    --text-muted: #6B7280;

    --accent-contractor: #E8590C;
    --accent-subcontractor: #2B8A3E;
    --accent-trucker: #1971C2;
    --accent-supplier: #9C36B5;
    --accent-expired: #E03131;
    --accent-warning: #F59F00;

    --font-body: 'DM Sans', -apple-system, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.4);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.5);

    --sidebar-width: 380px;
    --header-height: 44px;
}

/* ─── RESET ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html, body {
    height: 100%;
    height: 100dvh;
    font-family: var(--font-body);
    background: var(--bg-primary);
    color: var(--text-primary);
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

body {
    display: flex;
    flex-direction: column;
}

/* ─── HEADER ────────────────────────────────────────── */
.app-header {
    min-height: var(--header-height);
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    z-index: 100;
    position: relative;
    flex-shrink: 0;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 1;
    min-width: 0;
}

.brand-icon svg { width: 28px; height: 28px; }

.brand-text h1 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.1;
    white-space: nowrap;
}

.brand-subtitle {
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

.header-stats {
    display: flex;
    gap: 4px;
    flex-shrink: 0;
    white-space: nowrap;
}

.stat-chip {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 3px 7px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 11px;
    color: var(--text-secondary);
    cursor: default;
    transition: background 0.15s;
}

.stat-chip:hover { background: var(--bg-hover); }

.stat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.stat-count {
    font-family: var(--font-mono);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 11px;
}

/* ─── LAYOUT ────────────────────────────────────────── */
.app-layout {
    display: flex;
    flex: 1;
    height: 100%;
    height: 100dvh;
    position: relative;
    min-height: 0;
    overflow: hidden;
}

/* ─── SIDEBAR ───────────────────────────────────────── */
.sidebar {
    width: var(--sidebar-width);
    min-width: var(--sidebar-width);
    max-width: var(--sidebar-width);
    background: var(--bg-secondary);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    z-index: 50;
    transition: margin-left 0.25s ease;
}

.sidebar.collapsed {
    margin-left: calc(var(--sidebar-width) * -1);
}

.sidebar-toggle {
    position: absolute;
    right: -32px;
    top: 12px;
    width: 32px;
    height: 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-left: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--text-muted);
    z-index: 51;
    transition: color 0.15s;
}

.sidebar-toggle:hover { color: var(--text-primary); }

.sidebar.collapsed .sidebar-toggle svg {
    transform: rotate(180deg);
}

/* ─── FILTER SECTIONS ───────────────────────────────── */
.filter-section {
    padding: 14px 16px;
    border-bottom: 1px solid var(--border);
}

.filter-section:last-child {
    border-bottom: none;
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.filter-title {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.filter-title svg {
    opacity: 0.5;
}

/* ─── SEARCH BOX ────────────────────────────────────── */
.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 10px;
    color: var(--text-muted);
    pointer-events: none;
}

.search-box input {
    width: 100%;
    padding: 9px 32px 9px 36px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
}

.search-box input::placeholder { color: var(--text-muted); }
.search-box input:focus {
    border-color: var(--accent-contractor);
    box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.15);
}

.search-clear {
    position: absolute;
    right: 6px;
    width: 24px;
    height: 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 18px;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.search-clear:hover { color: var(--text-primary); background: var(--bg-hover); }
.search-box input:not(:placeholder-shown) ~ .search-clear { display: flex; }

/* ─── TYPE FILTERS ──────────────────────────────────── */
.type-filters {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.type-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.1s;
    font-size: 13px;
}

.type-check:hover { background: var(--bg-hover); }

.type-check input { display: none; }

.check-marker {
    width: 16px;
    height: 16px;
    border: 2px solid var(--border-light);
    border-radius: 3px;
    position: relative;
    transition: all 0.15s;
    flex-shrink: 0;
}

.type-check input:checked ~ .check-marker {
    background: var(--type-color);
    border-color: var(--type-color);
}

.type-check input:checked ~ .check-marker::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0;
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.check-label { color: var(--text-secondary); }
.type-check input:checked ~ .check-label { color: var(--text-primary); }

/* ─── COUNTY SELECT ──────────────────────────────────── */
.county-select {
    width: 100%;
    padding: 8px 32px 8px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 13px;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color 0.15s;
}

.county-select:hover { border-color: var(--border-light); }
.county-select:focus { border-color: var(--accent-contractor); box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.15); }

.county-select option {
    background: var(--bg-secondary);
    color: var(--text-primary);
}

.county-select.active {
    border-color: var(--accent-contractor);
    color: var(--accent-contractor);
}

/* ─── MATCH TOGGLE ──────────────────────────────────── */
.match-toggle {
    display: flex;
    gap: 2px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-sm);
    padding: 2px;
    margin-bottom: 8px;
}

.match-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.match-option input { display: none; }

.match-option span {
    display: block;
    width: 100%;
    text-align: center;
    padding: 5px 8px;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    border-radius: 3px;
    transition: all 0.15s;
}

.match-option input:checked ~ span {
    background: var(--bg-surface);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

/* ─── CATEGORY LIST ─────────────────────────────────── */
.category-search input {
    width: 100%;
    padding: 7px 10px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 12px;
    outline: none;
    margin-bottom: 6px;
}

.category-search input::placeholder { color: var(--text-muted); }
.category-search input:focus { border-color: var(--accent-contractor); }

.category-list {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.category-list::-webkit-scrollbar { width: 5px; }
.category-list::-webkit-scrollbar-track { background: transparent; }
.category-list::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

.cat-item {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 6px;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.1s;
}

.cat-item:hover { background: var(--bg-hover); }
.cat-item.hidden { display: none; }

.cat-item input { display: none; }

.cat-item input:checked ~ .cat-code {
    background: var(--accent-contractor);
    color: white;
}

.cat-code {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    padding: 1px 5px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text-muted);
    min-width: 30px;
    text-align: center;
    transition: all 0.15s;
    flex-shrink: 0;
}

.cat-name {
    color: var(--text-secondary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cat-item input:checked ~ .cat-name { color: var(--text-primary); }

.cat-count {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    background: var(--accent-contractor);
    color: white;
    padding: 1px 6px;
    border-radius: 10px;
    display: none;
}

.cat-count.visible { display: inline; }

/* ─── CATEGORY ACTIONS ──────────────────────────────── */
.category-actions {
    display: flex;
    gap: 6px;
    padding-top: 10px;
    margin-top: 6px;
    border-top: 1px solid var(--border);
}

.btn-sm {
    flex: 1;
    padding: 7px 12px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.15s;
}

.btn-sm:hover { background: var(--bg-hover); color: var(--text-primary); }

.btn-sm.btn-primary {
    background: var(--accent-contractor);
    border-color: var(--accent-contractor);
    color: white;
}

.btn-sm.btn-primary:hover { background: #cc4d0a; }

/* ─── RESULTS LIST ──────────────────────────────────── */
.results-section { min-height: 0; }

.results-count {
    margin-left: auto;
    font-family: var(--font-mono);
    font-size: 10px;
    background: var(--bg-tertiary);
    color: var(--text-muted);
    padding: 1px 7px;
    border-radius: 10px;
    border: 1px solid var(--border);
}

.results-list {
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--border-light) transparent;
}

.results-list::-webkit-scrollbar { width: 5px; }
.results-list::-webkit-scrollbar-track { background: transparent; }
.results-list::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 3px; }

.results-empty {
    padding: 20px;
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
}

.result-item {
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background 0.1s;
    position: relative;
}

.result-item:hover { background: var(--bg-hover); }
.result-item.active { background: var(--bg-surface); }

.result-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 0 2px 2px 0;
}

.result-item[data-type="contractor"]::before { background: var(--accent-contractor); }
.result-item[data-type="subcontractor"]::before { background: var(--accent-subcontractor); }
.result-item[data-type="trucker"]::before { background: var(--accent-trucker); }
.result-item[data-type="supplier"]::before { background: var(--accent-supplier); }

.result-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 2px;
    line-height: 1.2;
}

.result-name.expired { color: var(--accent-expired); }

.result-meta {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.result-type-badge {
    font-family: var(--font-mono);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 1px 5px;
    border-radius: 3px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
}

.result-item[data-type="contractor"] .result-type-badge { color: var(--accent-contractor); border-color: var(--accent-contractor); }
.result-item[data-type="subcontractor"] .result-type-badge { color: var(--accent-subcontractor); border-color: var(--accent-subcontractor); }
.result-item[data-type="trucker"] .result-type-badge { color: var(--accent-trucker); border-color: var(--accent-trucker); }
.result-item[data-type="supplier"] .result-type-badge { color: var(--accent-supplier); border-color: var(--accent-supplier); }

.result-expired-badge {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--accent-expired);
    padding: 1px 5px;
    background: rgba(224,49,49,0.1);
    border-radius: 3px;
}

/* ─── MAP ───────────────────────────────────────────── */
.map-container {
    flex: 1;
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
}

#map {
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
}

/* Leaflet dark theme overrides */
.leaflet-control-zoom a {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border-color: var(--border) !important;
}

.leaflet-control-zoom a:hover {
    background: var(--bg-hover) !important;
}

.leaflet-control-attribution {
    background: rgba(15,17,20,0.8) !important;
    color: var(--text-muted) !important;
    font-size: 10px !important;
}

.leaflet-control-attribution a {
    color: var(--text-secondary) !important;
}

/* ─── MAP DISCLAIMER ────────────────────────────────── */
.map-disclaimer {
    position: absolute;
    bottom: 8px;
    left: 12px;
    font-size: 10px;
    color: var(--text-secondary);
    background: rgba(15, 17, 20, 0.75);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 3px 8px;
    z-index: 1000;
    pointer-events: none;
}

/* ─── MAP LEGEND ────────────────────────────────────── */
.map-legend {
    position: absolute;
    bottom: 30px;
    right: 12px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 10px 14px;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: var(--text-secondary);
    padding: 2px 0;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}

.legend-dot-expired {
    background: var(--accent-expired) !important;
    border: 2px dashed rgba(255,255,255,0.4);
    width: 10px;
    height: 10px;
}

/* ─── MAP POPUP ─────────────────────────────────────── */
.leaflet-popup-content-wrapper {
    background: var(--bg-secondary) !important;
    color: var(--text-primary) !important;
    border: 1px solid var(--border) !important;
    border-radius: var(--radius-md) !important;
    box-shadow: var(--shadow-lg) !important;
    padding: 0 !important;
}

.leaflet-popup-tip {
    background: var(--bg-secondary) !important;
    border: 1px solid var(--border) !important;
    border-top: none !important;
    border-left: none !important;
}

.leaflet-popup-close-button {
    color: var(--text-muted) !important;
    font-size: 20px !important;
    width: 28px !important;
    height: 28px !important;
    line-height: 28px !important;
}

.leaflet-popup-content {
    margin: 0 !important;
    min-width: 260px;
    max-width: 320px;
}

.popup-content {
    padding: 14px 16px;
}

.popup-header {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.popup-type-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 4px;
    flex-shrink: 0;
}

.popup-name {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

.popup-name.expired { color: var(--accent-expired); }

.popup-type-label {
    font-family: var(--font-mono);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 6px;
}

.popup-detail {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 8px;
}

.popup-detail a {
    color: var(--accent-trucker);
    text-decoration: none;
}

.popup-detail a:hover { text-decoration: underline; }

.popup-county {
    font-size: 11px;
    color: var(--accent-contractor);
    font-weight: 500;
}

.popup-expired-warning {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-expired);
    background: rgba(224,49,49,0.1);
    padding: 3px 8px;
    border-radius: var(--radius-sm);
    margin-bottom: 6px;
}

.popup-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid var(--border);
}

.popup-cat-tag {
    font-size: 10px;
    padding: 2px 6px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border);
    border-radius: 3px;
    color: var(--text-secondary);
    white-space: nowrap;
}

/* ─── DETAIL OVERLAY ────────────────────────────────── */
.detail-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    z-index: 200;
    justify-content: flex-end;
}

.detail-overlay.active { display: flex; }

.detail-panel {
    width: 420px;
    max-width: 100%;
    background: var(--bg-secondary);
    border-left: 1px solid var(--border);
    overflow-y: auto;
    padding: 24px;
    position: relative;
}

.detail-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    background: var(--bg-tertiary);
    color: var(--text-muted);
    font-size: 20px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.detail-close:hover { color: var(--text-primary); background: var(--bg-hover); }

/* ─── LOADING ───────────────────────────────────────── */
.loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--accent-contractor);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ─── RESPONSIVE ────────────────────────────────────── */
/* ─── RESPONSIVE: MEDIUM (tablets, small laptops) ───── */
@media (max-width: 1100px) {
    .stat-chip {
        padding: 2px 5px;
        font-size: 10px;
        gap: 3px;
    }
    .stat-dot { width: 5px; height: 5px; }
    .stat-count { font-size: 10px; }
    .header-stats { gap: 3px; }
    .brand-text h1 { font-size: 13px; }
    :root {
        --sidebar-width: 320px;
    }
}

/* ─── RESPONSIVE: SMALL (phones) ────────────────────── */
@media (max-width: 768px) {
    :root {
        --sidebar-width: 85vw;
        --header-height: 48px;
    }

    .app-header {
        padding: 0 12px;
    }

    .brand-text h1 {
        font-size: 14px;
    }

    .brand-subtitle {
        display: none;
    }

    .brand-icon svg {
        width: 26px;
        height: 26px;
    }

    .header-stats {
        display: none;
    }

    .sidebar {
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: var(--sidebar-width);
        min-width: var(--sidebar-width);
        max-width: var(--sidebar-width);
        z-index: 60;
        box-shadow: var(--shadow-lg);
    }

    .sidebar.collapsed {
        margin-left: calc(var(--sidebar-width) * -1);
    }

    .map-legend {
        bottom: 10px;
        right: 10px;
        font-size: 10px;
        padding: 6px 10px;
    }

    .detail-panel {
        width: 100%;
        max-height: 70vh;
        max-height: 70dvh;
    }

    .filter-section {
        padding: 10px 14px;
    }

    .search-box input {
        font-size: 16px; /* prevents iOS zoom on focus */
    }
}

/* ─── CUSTOM MARKER STYLES ──────────────────────────── */
.custom-marker {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.8);
    box-shadow: 0 1px 4px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: transform 0.15s;
}

.custom-marker:hover {
    transform: scale(1.4);
    z-index: 1000 !important;
}

.marker-contractor { background: var(--accent-contractor); }
.marker-subcontractor { background: var(--accent-subcontractor); }
.marker-trucker { background: var(--accent-trucker); }
.marker-supplier { background: var(--accent-supplier); }
.marker-concrete_supplier { background: #D4A843; }
.marker-bituminous_supplier { background: #C2185B; }

.marker-expired {
    border: 2px dashed rgba(255,255,255,0.6);
    opacity: 0.7;
}

/* ─── CLUSTER STYLES ────────────────────────────────── */
.marker-cluster {
    background: var(--bg-surface);
    border: 2px solid var(--border-light);
    border-radius: 50%;
    color: var(--text-primary);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

/* ─── COUNTY BOUNDARY TOOLTIP ──────────────────────── */
.county-tooltip {
    background: rgba(30, 34, 42, 0.85) !important;
    border: 1px solid #444 !important;
    color: #ccc !important;
    font-family: var(--font-primary) !important;
    font-size: 11px !important;
    padding: 3px 8px !important;
    border-radius: 4px !important;
    box-shadow: none !important;
}

/* County name labels drawn at each county centroid */
.county-label-marker {
    background: none;
    border: none;
    position: relative;
}

.county-label {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    transform: translate(-50%, -50%);
    white-space: nowrap;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #c9ced6;
    text-shadow: 0 1px 3px #0a0c10, 0 0 2px #0a0c10;
    pointer-events: none;
}
