.theme-popup-overlay-8f14fd79 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.theme-popup-overlay-8f14fd79.show {
    opacity: 1;
}

.theme-popup-box-8f14fd79 {
    /* Background and border are now dynamic via inline CSS */
    border-style: solid;
    border-width: 3px;
    padding: 50px 40px;
    max-width: 650px;
    width: 90%;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
    text-align: center;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

/* Colors and fonts are dynamic via inline CSS in main.php */
.theme-popup-box-8f14fd79 p,
.theme-popup-box-8f14fd79 span,
.theme-popup-box-8f14fd79 div {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.theme-popup-box-8f14fd79 h1,
.theme-popup-box-8f14fd79 h2,
.theme-popup-box-8f14fd79 h3,
.theme-popup-box-8f14fd79 h4,
.theme-popup-box-8f14fd79 h5,
.theme-popup-box-8f14fd79 h6 {
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: normal;
}

.theme-popup-close-8f14fd79 {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: opacity 0.2s ease;
}

.theme-popup-close-8f14fd79:hover {
    opacity: 0.7;
}

/* Media Queries voor Mobiel */
@media screen and (max-width: 768px) {
    .theme-popup-box-8f14fd79 {
        padding: 30px 15px 20px; /* Minder padding op mobiel */
        width: 75%; /* NOG smaller, zodat het niet helemaal tegen de rand plakt */
        border-width: 2px;
    }
    
    .theme-popup-box-8f14fd79 p,
    .theme-popup-box-8f14fd79 span,
    .theme-popup-box-8f14fd79 div {
        font-size: 14px; /* Kleiner lettertype op mobiel */
        margin-bottom: 12px;
    }

    .theme-popup-box-8f14fd79 h1,
    .theme-popup-box-8f14fd79 h2,
    .theme-popup-box-8f14fd79 h3,
    .theme-popup-box-8f14fd79 h4,
    .theme-popup-box-8f14fd79 h5,
    .theme-popup-box-8f14fd79 h6 {
        font-size: 1.2em; /* Schaal de koppen iets terug */
        margin-bottom: 15px;
        letter-spacing: 1px;
    }

    .theme-popup-close-8f14fd79 {
        top: 8px;
        right: 12px;
        font-size: 24px;
    }
}