/* Beycome County Maps */

.bc-county-map {
    width: 100%;
    background: #f4f6f8;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    line-height: 0;
}

.bc-county-map svg {
    display: block;
    width: 100%;
}

.bc-county {
    transition: fill 0.15s ease;
}

.bc-county-label {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 9px;
    font-weight: 600;
    fill: #ffffff;
    text-anchor: middle;
    pointer-events: none;
    user-select: none;
    paint-order: stroke;
    stroke: rgba(0, 0, 0, 0.3);
    stroke-width: 2px;
    stroke-linejoin: round;
}

.bc-map-tooltip {
    position: absolute;
    z-index: 9999;
    background: #152330;
    color: #fff;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: 13px;
    line-height: 1.4;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: opacity 0.1s ease;
}

.bc-map-tooltip small {
    color: #f8ad90;
    font-size: 11px;
}
