#page-load-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

#modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    width: 60%;
    max-width: 500px;
    position: relative;
    margin: auto;
    text-align: center;
}

#modal-content img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    font-size: 20px;
}
