
.ssmp-map-component {
    --ssmp-dedicated: #184f34;
    --ssmp-contact: #8fb89c;
    --ssmp-inactive: #d9dfdc;
    --ssmp-hover: #ff7800;
    width: 100%;
}
.ssmp-map-stage {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}
.ssmp-map-stage svg {
    display: block;
    width: 100%;
    height: auto;
    overflow: visible;
}
.ssmp-map-stage svg path,
.ssmp-map-stage svg polygon,
.ssmp-map-stage svg g[id] {
    transition: fill .18s ease, opacity .18s ease, transform .18s ease;
    transform-box: fill-box;
    transform-origin: center;
}
.ssmp-map-stage .ssmp-state {
    fill: var(--ssmp-inactive) !important;
    stroke: #fff !important;
    stroke-width: 1.35 !important;
    cursor: default;
    outline: none;
}
.ssmp-map-stage .ssmp-state.is-dedicated {
    fill: var(--ssmp-dedicated) !important;
    cursor: pointer;
}
.ssmp-map-stage .ssmp-state.is-contact {
    fill: var(--ssmp-contact) !important;
    cursor: pointer;
}
.ssmp-map-stage .ssmp-state.is-inactive {
    fill: var(--ssmp-inactive) !important;
}
.ssmp-map-stage .ssmp-state.is-clickable:hover,
.ssmp-map-stage .ssmp-state.is-clickable:focus {
    fill: var(--ssmp-hover) !important;
    opacity: .96;
}
.ssmp-tooltip {
    position: absolute;
    z-index: 4;
    min-width: 150px;
    padding: 10px 13px;
    border-radius: 8px;
    background: #18211d;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    font: 600 13px/1.3 Arial, sans-serif;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -120%);
    transition: opacity .15s ease;
}
.ssmp-tooltip.is-visible { opacity: 1; }
.ssmp-tooltip small {
    display: block;
    margin-top: 3px;
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 400;
}
.ssmp-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 22px;
    color: #37413c;
    font-size: 14px;
}
.ssmp-legend span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.ssmp-legend i {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 4px;
}
.ssmp-legend .is-dedicated { background: var(--ssmp-dedicated); }
.ssmp-legend .is-contact { background: var(--ssmp-contact); }
.ssmp-legend .is-inactive { background: var(--ssmp-inactive); }
@media (max-width: 640px) {
    .ssmp-legend { justify-content: flex-start; }
    .ssmp-tooltip { display: none; }
}
