#simple-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}

#simple-popup-container {
    position: relative;
    width: 90%;
    max-width: 800px; /* Increased from 500px to better accommodate iframes */
    max-height: 150vh;
    overflow-y: auto;
    background-color:  #ffffff00;
    padding: 0px;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#simple-popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #ffffff;
}

#simple-popup-title {
    margin-top: 0;
    padding-right: 30px;
}

#simple-popup-body {
    margin-bottom: 20px;
}

#simple-popup-body iframe {
    max-width: 100%; /* Ensure iframes are responsive */
    margin: 0px 0;
}

#simple-popup-footer {
    text-align: center;
}

#simple-popup-button {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    color: white;
    font-size: 16px;
    cursor: pointer;
}