.neatlabs-popup-editor-preview {
    display: block !important;
}

.el-modal-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.el-modal {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: var(--el-modal-max-width, 600px);
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 6px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
    padding: 40px;
}

.el-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    color: #555;
}

.el-modal-close:hover {
    color: #000;
}