/**
 * Schedules Page Styles
 *
 * @package SigmaImportX
 * @since 1.0.0
 */

.sie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}

.sie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.sie-modal-content {
    position: relative;
    background: #fff;
    margin: 30px auto;
    max-width: 800px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

.sie-modal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    padding: 5px;
}

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

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

.sie-modal-footer {
    padding: 15px 20px;
    border-top: 1px solid #ddd;
    text-align: right;
    background: #f5f5f5;
}

.sie-form-row {
    margin-bottom: 20px;
}

.sie-form-label,
label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

input[type="text"],
input[type="time"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.sie-radio-group {
    display: flex;
    gap: 20px;
}

.sie-radio-group label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
}

.sie-form-section {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
}

.sie-form-section h3 {
    margin-top: 0;
}

.required {
    color: #d63638;
}

.description {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

.sie-status-badge {
    padding: 4px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 600;
}

.sie-status-badge.active {
    background: #d4edda;
    color: #155724;
}

.sie-status-badge.paused {
    background: #fff3cd;
    color: #856404;
}

.sie-type-badge {
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.sie-type-badge.import {
    background: #cfe2ff;
    color: #084298;
}

.sie-type-badge.export {
    background: #d1e7dd;
    color: #0a3622;
}
