/* CSS for list */
.map-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
    display: none;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
    width: 80%;
    height: 80%;
}

.map-popup .map-container {
    width: 100%;
    height: 100%;
}

.map-popup .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10;
    background: #fff;
    color: #000;
    border: 1px solid #000;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 20px;
    text-align: center;
    line-height: 28px;
    cursor: pointer;
    z-index: 5555;
}
