.po-popup-overlay-906665e0 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
body.admin-bar .po-popup-overlay-906665e0 {
    top: var(--wp-admin--admin-bar--height, 32px);
    height: calc(100vh - var(--wp-admin--admin-bar--height, 32px));
}
@media screen and (max-width: 782px) {
    body.admin-bar .po-popup-overlay-906665e0 {
        top: 46px;
        height: calc(100vh - 46px);
    }
}
.po-popup-modal-906665e0 {
    background: #ffffff; /* Removed red background */
    color: #000000;      /* Set content to black */
    max-width: 500px;
    padding: 30px;
    border-radius: 8px;
    border: 6px solid #F8002F; /* Added beautiful thick border */
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    font-family: inherit;
    margin: 20px;
}
.po-popup-title-906665e0 {
    color: #000000;      /* Changed to black so it's visible on white bg */
    font-weight: bold;
    font-size: 24px;
    margin-top: 0;
    margin-bottom: 15px;
}
.po-popup-content-906665e0 {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
    font-weight: bold;   /* Made content bold */
}
.po-popup-btn-906665e0 {
    background: #F8002F; /* Changed to red */
    color: #ffffff;      /* Changed text to white */
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}
.po-popup-btn-906665e0:hover {
    transform: scale(1.05);
}