.jetform-import-interface {
    margin: 20px 0;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e1e8ed;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.jetform-style-default {
    background: #ffffff;
    border: 1px solid #e1e8ed;
    color: #333;
}

.jetform-style-minimal {
    background: #f8f9fa;
    border: 1px solid #e1e8ed;
    color: #333;
}

.jetform-style-compact {
    background: #ffffff;
    padding: 15px;
    border: 1px solid #e1e8ed;
    border-left: 4px solid #4fc3d7;
    color: #333;
}

.jetform-import-title {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.jetform-import-description {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.4;
}

.jetform-import-button {
    background: #4fc3d7;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.jetform-import-button:hover {
    background: #3fb5ca;
}

.jetform-error {
    background: #ffebee;
    border: 1px solid #f44336;
    color: #c62828;
    padding: 15px;
    border-radius: 4px;
    margin: 20px 0;
}

/* Modal Styles */
#jetform-bulk-import-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 10000;
}

.jetform-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: white;
    padding: 30px;
    border-radius: 12px;
    max-width: 700px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.jetform-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.jetform-modal-header h3 {
    margin: 0;
}

.jetform-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.jetform-info-box {
    background: #e8f4f8;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.jetform-info-box ul {
    margin: 10px 0;
    padding-left: 20px;
    font-size: 13px;
}

.jetform-textarea {
    width: 100%;
    border: 2px solid #ddd;
    border-radius: 4px;
    padding: 10px;
    font-family: monospace;
}

.jetform-modal-buttons {
    margin: 20px 0;
    text-align: center;
}

.jetform-parse-btn {
    background: #4fc3d7;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.jetform-cancel-btn {
    background: #666;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-left: 10px;
}

.jetform-parsing-status {
    display: none;
    text-align: center;
    margin: 15px 0;
}

.jetform-spinner {
    display: inline-block;
    width: 24px;
    height: 24px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #4fc3d7;
    border-radius: 50%;
    animation: jetform-spin 1s linear infinite;
}

@keyframes jetform-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}