/* CSS for the modal overlay */
#isklad-ppl-modal.isklad-ppl-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: none;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1050;
}

/* CSS for the modal box */
#isklad-ppl-modal .isklad-modal-box {
    position: relative;
    margin: 0 auto;
    width: 80%;
    min-width: 600px;
    padding: 20px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

#close-isklad-ppl-modal-button {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 0;
    margin: 0;
    background-color: #004992;
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 40px; 
    height: 40px;
    line-height: 40px;
    display: flex;
    align-items: center; 
    justify-content: center;
    cursor: pointer;
    outline: none;
    overflow: hidden;              
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: background-color 0.3s;
    text-decoration: none;
}

#close-isklad-ppl-modal-button:hover {
    background-color: #d40511;
}

#isklad-ppl-modal .ppl-parcelshop-map {
    min-height: 720px;
    height: 50vh;
}