/**
 * Sigma ImportX Engine - Export Page Styles
 *
 * @package SigmaImportX
 * @since 1.0.0
 */

.sie-export-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.sie-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.sie-export-modal-content {
    position: relative;
    background: white;
    border-radius: 4px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow: auto;
}

.sie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #dcdcde;
}

.sie-modal-header h2 {
    margin: 0;
}

.sie-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #666;
    cursor: pointer;
    padding: 0;
}

.sie-modal-close:hover {
    color: #000;
}

.sie-modal-body {
    padding: 20px;
}

.sie-modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 20px;
    border-top: 1px solid #dcdcde;
}
