.ncr-em-map-wrap {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.ncr-em-map-inner {
    position: relative;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    -webkit-user-select: none;
    user-select: none;
}

.ncr-em-map-inner svg {
    display: block;
    width: 100%;
    height: auto;
}

.ncr-em-county,
.ncr-em-county-shape {
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
}

.ncr-em-county-shape {
    transition: filter 0.15s ease;
}

.ncr-em-county.is-hovered .ncr-em-county-shape,
.ncr-em-county-shape:hover {
    filter: brightness(1.08);
}

.ncr-em-county.has-link .ncr-em-county-shape {
    cursor: pointer;
}

.ncr-em-county.no-link .ncr-em-county-shape {
    cursor: default;
}

.ncr-em-tooltip {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    padding: 8px 14px;
    background: rgba(20, 30, 48, 0.92);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 6px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, calc(-100% - 12px));
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.15s ease;
}

.ncr-em-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}

.ncr-em-map-hint {
    text-align: center;
    margin: 0 0 12px;
    color: #4b5563;
    font-size: 15px;
}
