.cuha-map-switcher {
    position: fixed;
    top: 12px;
    left: 52px;
    z-index: 20000;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: min(720px, calc(100vw - 64px));
    font: 600 13px/1.2 Arial, Helvetica, sans-serif;
}

.cuha-map-switcher a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    background: rgba(18, 20, 24, 0.84);
    color: #f7f7f7;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.cuha-map-switcher a:hover,
.cuha-map-switcher a:focus-visible {
    background: rgba(41, 73, 118, 0.94);
    outline: none;
}

.cuha-map-switcher a.active {
    border-color: rgba(88, 184, 255, 0.85);
    background: rgba(24, 97, 160, 0.96);
}

@media (max-width: 640px) {
    .cuha-map-switcher {
        top: 8px;
        left: 44px;
        gap: 4px;
        max-width: calc(100vw - 52px);
        font-size: 12px;
    }

    .cuha-map-switcher a {
        min-height: 30px;
        padding: 0 8px;
    }
}
