.popup-form-page {
    background-color: transparent;
    #header, #footer, .floating-links {
        display: none;
    }
    #quick-connect-form {
        background-color: transparent;
    }
}

/* Lightbox Overlay */

.lightbox-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

/* Lightbox Container */

.lightbox-container {
    position: relative;
    width: 80%;
    height: 80%;
    background: transparent;
    margin: 0 auto;
    margin-top: 15vh;
    display: flex;
    align-items: center;
}

/* Close Button */

.lightbox-close {
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 30px;
    height: 30px;
    background: #ff0000;
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
.lightbox-close:hover {
    background: #cc0000;
}

/* Iframe Styling */

.lightbox-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

/* Trigger Button (example) */

.open-lightbox {
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 20px;
}
.open-lightbox:hover {
    background: #45a049;
}
.lightbox-iframe #header {
    display: none;
}