/* ========== 全局变量与基础样式 ========== */
:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #f093fb;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
    --info: #4299e1;
    --gray: #a0aec0;
    --gray-light: #e2e8f0;
    --dark: #2d3748;
    --darker: #1a202c;
    --bg: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --card-bg: rgba(255, 255, 255, 0.92);
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.2);
    --radius: 14px;
    --radius-sm: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans SC', sans-serif;
    background: var(--bg);
    min-height: 100vh;
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: var(--primary);
}

button {
    cursor: pointer;
    font-family: inherit;
}

/* ========== 登录页 ========== */
.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-container {
    width: 100%;
    max-width: 420px;
}

.login-card {
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-radius: var(--radius);
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
}

.login-header {
    text-align: center;
    margin-bottom: 28px;
}

.login-icon {
    font-size: 52px;
    margin-bottom: 12px;
}

.login-header h1 {
    font-size: 22px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 6px;
}

.login-header p {
    color: var(--gray);
    font-size: 14px;
}

.login-form .form-group {
    margin-bottom: 18px;
}

.login-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.login-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-block {
    width: 100%;
    padding: 14px;
    font-size: 15px;
}

.login-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--gray-light);
    font-size: 12px;
    color: var(--gray);
}

.alert {
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    margin-bottom: 16px;
}

.alert-error {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    color: var(--danger);
}

.alert-success {
    background: #f0fff4;
    border: 1px solid #c6f6d5;
    color: var(--success);
}

/* ========== 后台布局 ========== */
.admin-wrapper {
    min-height: 100vh;
    padding-bottom: 40px;
}

.admin-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
}

.brand-icon {
    font-size: 26px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-actions .btn {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-outline {
    background: #fff;
    border: 1px solid var(--gray-light);
    color: var(--dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ========== 主内容区 ========== */
.main-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 24px;
}

@media (min-width: 769px) {
    .main-container {
        padding: 24px 40px;
    }
}

/* ========== 统计卡片 ========== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

@media (max-width: 1400px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.stat-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    padding: 20px 22px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

.stat-icon.blue { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); color: #fff; }
.stat-icon.green { background: linear-gradient(135deg, #48bb78 0%, #38a169 100%); color: #fff; }
.stat-icon.orange { background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%); color: #fff; }
.stat-icon.red { background: linear-gradient(135deg, #f56565 0%, #e53e3e 100%); color: #fff; }
.stat-icon.purple { background: linear-gradient(135deg, #9f7aea 0%, #805ad5 100%); color: #fff; }
.stat-icon.cyan { background: linear-gradient(135deg, #38b2ac 0%, #319795 100%); color: #fff; }
.stat-icon.pink { background: linear-gradient(135deg, #ed64a6 0%, #d53f8c 100%); color: #fff; }
.stat-icon.gray { background: linear-gradient(135deg, #a0aec0 0%, #718096 100%); color: #fff; }

.stat-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--darker);
    line-height: 1.2;
}

.stat-info p {
    font-size: 13px;
    color: var(--gray);
    margin-top: 2px;
}

/* ========== 玻璃卡片 ========== */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 20px;
    overflow: hidden;
}

.glass-card-header {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.glass-card-header h2 {
    font-size: 16px;
    font-weight: 700;
    color: var(--darker);
    display: flex;
    align-items: center;
    gap: 8px;
}

.glass-card-body {
    padding: 20px 24px;
}

/* ========== 导入区域 ========== */
.import-form textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 14px;
    border: 2px dashed var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 13px;
    line-height: 1.6;
    resize: vertical;
    transition: var(--transition);
    outline: none;
    font-family: 'Courier New', monospace;
}

.import-form textarea:focus {
    border-color: var(--primary);
    border-style: solid;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.import-hint {
    margin-top: 10px;
    font-size: 12px;
    color: var(--gray);
    line-height: 1.8;
}

.import-hint code {
    background: #edf2f7;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-dark);
}

/* ========== 搜索筛选 ========== */
.toolbar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.search-box input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.search-box input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.12);
}

.search-box .search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 15px;
}

.filter-select {
    padding: 10px 14px;
    border: 1px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-size: 14px;
    background: #fff;
    outline: none;
    cursor: pointer;
    min-width: 130px;
}

/* ========== 表格样式 ========== */
.table-responsive {
    /* 桌面端不限制溢出 */
}

@media (max-width: 1200px) {
    .table-responsive {
        overflow-x: auto;
    }
}

table.data-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

table.data-table thead th {
    text-align: left;
    padding: 12px 14px;
    font-weight: 600;
    color: var(--gray);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-bottom: 1px solid var(--gray-light);
    white-space: nowrap;
}

table.data-table tbody td {
    padding: 14px;
    border-bottom: 1px solid #f7fafc;
    vertical-align: middle;
}

table.data-table tbody td.col-nowrap {
    white-space: nowrap;
}

table.data-table tbody tr:hover {
    background: #f8fafc;
}

table.data-table tbody tr:last-child td {
    border-bottom: none;
}

/* ========== 状态标签 ========== */
.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

.status-badge.active {
    background: #e6fffa;
    color: #319795;
}

.status-badge.paused {
    background: #f7fafc;
    color: #718096;
}

.status-badge.delivery {
    background: #fffaf0;
    color: #c05621;
}

.status-badge.signed {
    background: #f0fff4;
    color: #276749;
}

.status-badge.error {
    background: #fff5f5;
    color: #c53030;
}

/* ========== 标签样式 ========== */
.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
}

.tag-blue {
    background: #ebf8ff;
    color: #2b6cb0;
}

.tag-green {
    background: #f0fff4;
    color: #276749;
}

.tag-orange {
    background: #fffaf0;
    color: #c05621;
}

.tag-gray {
    background: #f7fafc;
    color: #4a5568;
}

/* ========== 可复制的文本 ========== */
.copy-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 4px;
    transition: var(--transition);
}

.copy-text:hover {
    background: #edf2f7;
}

.copy-text .copy-icon {
    font-size: 12px;
    color: var(--gray);
    opacity: 0;
    transition: var(--transition);
}

.copy-text:hover .copy-icon {
    opacity: 1;
}

/* ========== 操作按钮 ========== */
.action-btns {
    display: flex;
    gap: 4px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.action-btns .btn-sm {
    padding: 4px 8px;
    font-size: 11px;
    min-width: 28px;
    height: 28px;
}

.btn-info {
    background: #ebf8ff;
    color: #2b6cb0;
}

.btn-info:hover {
    background: #bee3f8;
}

.btn-warning {
    background: #fffaf0;
    color: #c05621;
}

.btn-warning:hover {
    background: #feebc8;
}

.btn-success {
    background: #f0fff4;
    color: #276749;
}

.btn-success:hover {
    background: #c6f6d5;
}

.btn-danger {
    background: #fff5f5;
    color: #c53030;
}

.btn-danger:hover {
    background: #fed7d7;
}

/* ========== 分页 ========== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.pagination button {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    border: 1px solid var(--gray-light);
    background: #fff;
    border-radius: var(--radius-sm);
    font-size: 13px;
    color: var(--dark);
    transition: var(--transition);
}

.pagination button:hover:not(:disabled) {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination button.active {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.pagination-info {
    text-align: center;
    font-size: 12px;
    color: var(--gray);
    margin-top: 8px;
}

/* ========== 模态框 ========== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: #fff;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-header {
    padding: 18px 24px;
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-header h3 {
    font-size: 16px;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    font-size: 22px;
    color: var(--gray);
    cursor: pointer;
    line-height: 1;
}

.modal-close:hover {
    color: var(--danger);
}

.modal-body {
    padding: 20px 24px;
    max-height: calc(90vh - 120px);
    overflow-y: auto;
}

.modal-footer {
    padding: 14px 24px;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

/* ========== 导入结果 ========== */
.import-result {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 12px;
}

.import-result-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.import-result-item .num {
    font-weight: 700;
    font-size: 18px;
}

.import-result-item.success { color: var(--success); }
.import-result-item.duplicate { color: var(--warning); }
.import-result-item.failed { color: var(--danger); }

/* ========== 原始响应展示 ========== */
.raw-response {
    background: #2d3748;
    color: #e2e8f0;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-family: 'Courier New', monospace;
    line-height: 1.6;
    overflow-x: auto;
    white-space: pre-wrap;
    word-break: break-word;
    max-height: 400px;
    overflow-y: auto;
}

/* ========== 加载动画 ========== */
.spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border-radius: var(--radius);
}

.loading-overlay .spinner {
    border-color: rgba(102, 126, 234, 0.2);
    border-top-color: var(--primary);
    width: 32px;
    height: 32px;
}

/* ========== Toast 通知 ========== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    box-shadow: var(--shadow-lg);
    animation: toastSlide 0.3s ease;
    max-width: 320px;
}

.toast.success { background: var(--success); }
.toast.error { background: var(--danger); }
.toast.info { background: var(--info); }

@keyframes toastSlide {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========== 手机端卡片列表 ========== */
.mobile-cards {
    display: none;
}

.mobile-card {
    background: #fff;
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--gray-light);
}

.mobile-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.mobile-card-header .express-no {
    font-weight: 700;
    font-size: 15px;
    word-break: break-all;
}

.mobile-card-body {
    font-size: 13px;
    color: #4a5568;
    line-height: 2;
}

.mobile-card-body .label {
    color: var(--gray);
    margin-right: 4px;
}

.mobile-card-footer {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--gray-light);
    flex-wrap: wrap;
}

.mobile-card .trace-context {
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.6;
    word-break: break-word;
}

/* ========== 空状态 ========== */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--gray);
}

.empty-state-icon {
    font-size: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--dark);
}

.empty-state p {
    font-size: 14px;
}

/* ========== 响应式设计 ========== */
@media (max-width: 768px) {
    .main-container {
        padding: 12px;
    }

    .header-inner {
        padding: 12px 16px;
    }

    .brand span {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 14px 16px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .stat-info h3 {
        font-size: 20px;
    }

    .glass-card-header {
        padding: 14px 16px;
    }

    .glass-card-body {
        padding: 14px 16px;
    }

    .toolbar {
        gap: 8px;
    }

    .search-box {
        min-width: 100%;
    }

    /* 手机端隐藏表格，显示卡片 */
    .table-responsive {
        display: none;
    }

    .mobile-cards {
        display: block;
    }

    /* 分页调整 */
    .pagination button {
        min-width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .modal-content {
        max-height: 95vh;
    }

    .modal-body {
        max-height: calc(95vh - 120px);
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .login-card {
        padding: 28px 20px;
    }

    .header-actions .btn span {
        display: none;
    }
}

/* 批量操作选中态 */
.order-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

/* 折叠轨迹 */
.trace-toggle {
    color: var(--primary);
    cursor: pointer;
    font-size: 12px;
    margin-top: 4px;
    display: inline-block;
}

.trace-toggle:hover {
    text-decoration: underline;
}

.trace-full {
    display: none;
    margin-top: 6px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 6px;
    font-size: 12px;
    line-height: 1.6;
}

.trace-full.show {
    display: block;
}

/* ========== 宝塔计划任务提示 ========== */
.cron-hint-card {
    border-left: 4px solid var(--warning);
}

.cron-command-box {
    display: flex;
    gap: 10px;
    align-items: center;
    background: #2d3748;
    color: #e2e8f0;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-family: 'Courier New', monospace;
    font-size: 13px;
    flex-wrap: wrap;
    word-break: break-all;
}

.cron-command-box code {
    flex: 1;
    font-family: inherit;
}

.cron-hint-steps {
    margin-top: 12px;
    font-size: 13px;
    color: var(--gray);
    line-height: 2;
    padding: 12px;
    background: #f8fafc;
    border-radius: var(--radius-sm);
}

/* ========== 单独添加模态框表单 ========== */
.form-row {
    display: flex;
    gap: 14px;
    margin-bottom: 14px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

#addSingleModal .form-group {
    margin-bottom: 14px;
}

#addSingleModal .form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

/* ========== 状态选择按钮 ========== */
.status-option-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.status-option-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    background: #fff;
    font-size: 14px;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.status-option-btn:hover:not(:disabled) {
    border-color: var(--primary);
    background: #f7fafc;
}

.status-option-btn.active {
    border-color: var(--primary);
    background: #ebf8ff;
    color: var(--primary-dark);
    font-weight: 600;
}

.status-option-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========== 批量操作工具栏 ========== */
.batch-toolbar {
    padding: 10px 24px;
    background: #fffaf0;
    border-bottom: 1px solid var(--gray-light);
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.batch-toolbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.batch-count {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

.batch-btns {
    display: flex;
    gap: 8px;
}

/* ========== 智能解析粘贴区 ========== */
.auto-parse-section {
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--gray-light);
}

.auto-parse-section label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 6px;
}

.auto-parse-section textarea.form-control {
    min-height: 80px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 14px;
    }

    .cron-command-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .cron-command-box .btn {
        width: 100%;
    }
}
