/* Popup Overlay */
.cf7-preview-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

/* Popup Box */
.cf7-preview-box {
    width: 600px;
    max-height: 80vh;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}

/* Close Button */
.cf7-preview-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Preview Button */
.cf7-preview-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background: #005baa;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

.cf7-preview-btn:hover {
    background: #003f7f;
}
/* Applies to first td in every row of preview table */
.email-temp.custom-first-td td:first-child {
    width: 200px;
}
