.locationsOverlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: white;
    transition: right 0.3s ease;
    z-index: 10000;
}

.locationsOverlay.active {
    right: 0;
}

.locationsMap {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.closeMapButton {
    position: absolute;
    top: 10px;
    right: 60px;
    color: black;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 20px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.9);
    z-index: 10001;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
