.yandex-map-modal {
    position: fixed;
    z-index: 1000;
    left: 0; top: 0; right: 0; bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.yandex-map-overlay {
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
}
.yandex-map-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    min-width: 320px;
    min-height: 420px;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    align-items: stretch;
}
.yandex-map-close {
    position: absolute;
    right: 18px;
    top: 8px;
    font-size: 2.2rem;
    color: #a02c2c;
    cursor: pointer;
    z-index: 3;
}
#yandex-map {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-top: 24px;
}

