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

:root {
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --danger: #dc2626;
  --bg: #f0f4f8;
  --sidebar-bg: #0f172a;
  --sidebar-hover: #1e293b;
  --sidebar-active: #2563eb;
  --card-bg: #ffffff;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --shadow: 0 1px 4px rgba(0,0,0,.06), 0 4px 16px rgba(0,0,0,.04);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'PingFang SC', 'Microsoft YaHei', sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 14px;
  line-height: 1.5;
}

/* ── 布局 ── */
#app { display: flex; min-height: 100vh; }

#sidebar {
  width: 210px;
  background: var(--sidebar-bg);
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 100;
}

.logo {
  padding: 22px 20px 18px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

#sidebar ul { list-style: none; padding: 10px 0; }
#sidebar li {
  padding: 11px 16px;
  cursor: pointer;
  border-radius: 8px;
  margin: 2px 10px;
  transition: background 0.15s;
  font-size: 14px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  gap: 8px;
}
#sidebar li:hover { background: var(--sidebar-hover); color: #e2e8f0; }
#sidebar li.active { background: var(--sidebar-active); color: #fff; font-weight: 600; }

#content { margin-left: 210px; flex: 1; padding: 28px 32px; min-height: 100vh; }

.page { animation: fadein 0.18s; }
.hidden { display: none !important; }
@keyframes fadein { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }

/* ── 通用页面头 ── */
.page-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px; flex-wrap: wrap; gap: 12px;
}
.page-header h2 { font-size: 20px; font-weight: 700; }
.header-actions { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.header-actions select,
.header-actions input[type="search"] { width: auto; min-width: 140px; }

/* 日期区间胶囊 */
.date-range-pill {
  display: inline-flex; align-items: center; gap: 4px;
  background: #fff; border: 1px solid #d1d5db; border-radius: 8px;
  padding: 0 10px; height: 36px;
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
}
.date-range-pill input[type="date"] {
  border: none; outline: none; background: transparent;
  font-size: 13px; color: #374151; padding: 0;
  width: 110px; cursor: pointer;
}
.date-range-pill input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.5; cursor: pointer; }
.date-range-pill .sep { color: #9ca3af; font-size: 13px; user-select: none; }

/* ── 概览专属头 ── */
.dash-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px; flex-wrap: wrap; gap: 12px;
}
.dash-title { font-size: 22px; font-weight: 800; color: var(--text); }
.dash-subtitle { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.dash-range {
  display: flex; align-items: center; gap: 8px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 14px;
  box-shadow: var(--shadow);
}
.dash-range input[type="date"] {
  border: none; background: transparent; font-size: 13px;
  color: var(--text); padding: 0; width: 120px;
}
.dash-range input[type="date"]:focus { outline: none; }
.range-sep { color: var(--text-muted); font-size: 16px; }
.dash-range select {
  border: none; background: transparent; font-size: 13px;
  color: var(--text); padding: 0; cursor: pointer; max-width: 120px;
}
.dash-range select:focus { outline: none; }
.dash-range .btn-primary { padding: 6px 16px; border-radius: 6px; }

/* ── 统计卡片 ── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.stat-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border-top: 3px solid transparent;
  transition: transform 0.15s, box-shadow 0.15s;
}
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 4px 20px rgba(0,0,0,.1); }
.stat-blue  { border-top-color: #2563eb; }
.stat-teal  { border-top-color: #0d9488; }
.stat-purple{ border-top-color: #7c3aed; }
.stat-amber  { border-top-color: #d97706; }
.stat-orange { border-top-color: #ea580c; }
.stat-icon { font-size: 26px; line-height: 1; padding-top: 2px; }
.stat-body { flex: 1; min-width: 0; }
.stat-label { font-size: 12px; color: var(--text-muted); font-weight: 500; margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.stat-value { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 4px; line-height: 1.2; }
.stat-sub { font-size: 12px; color: var(--text-muted); }

/* ── 图表区域 ── */
.chart-row {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 16px;
  margin-bottom: 24px;
}
.chart-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 22px;
  box-shadow: var(--shadow);
}
.section-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: .3px;
}

/* ── 按钮 ── */
button {
  padding: 8px 16px;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  font-size: 13px;
  background: #e2e8f0;
  color: var(--text);
  transition: all 0.15s;
  font-weight: 500;
}
button:hover { background: #cbd5e1; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); box-shadow: 0 2px 8px rgba(37,99,235,.3); }
.btn-secondary { background: transparent; color: var(--primary); border: 1px solid var(--primary) !important; }
.btn-secondary:hover { background: #eff6ff; }
.btn-danger { background: transparent; color: var(--danger); }
.btn-danger:hover { background: #fee2e2; }

/* ── 输入框 ── */
input, select, textarea {
  width: 100%;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(37,99,235,.1);
}
input[type="search"] { width: 200px; }
textarea { min-height: 80px; resize: vertical; }
input[readonly] { background: #f8fafc; color: var(--text-muted); }

/* ── 表格 ── */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card-bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
thead tr { background: #f8fafc; }
th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  font-size: 12px;
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: .4px;
}
td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
tr:last-child td { border-bottom: none; }
tr:hover td { background: #f8fafc; }
.num-col, .amount-col { text-align: right; font-variant-numeric: tabular-nums; white-space: nowrap; }
th.num-col { text-align: right; }
.amount-col { font-weight: 600; color: #0d9488; }
.actions { display: flex; gap: 6px; justify-content: flex-end; }
.actions button { padding: 5px 12px; font-size: 12px; }
.warn-col   { color: #d97706; font-weight: 600; }
.danger-col { color: #dc2626; font-weight: 600; }
.ok-col     { color: #16a34a; font-weight: 600; }

/* ── 模态框 ── */
#modal-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}
#modal {
  background: #fff;
  border-radius: 16px;
  width: 90%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.2);
}
#modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
#modal-header h3 { font-size: 16px; font-weight: 700; }
#modal-close { background: none; padding: 4px 8px; font-size: 16px; color: var(--text-muted); }
#modal-body { padding: 22px; }

/* 表单字段统一样式 */
.form-field {
  margin-bottom: 16px;
}
.form-field .field-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  display: block;
}
/* 兼容旧的 label 包裹写法 */
#modal-body label {
  display: block;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
}
#modal-body label input,
#modal-body label select,
#modal-body label textarea {
  margin-top: 6px;
  display: block;
  width: 100%;
}
.required { color: var(--danger); }
.form-actions {
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.form-actions button { min-width: 80px; padding: 10px 20px; }

/* ── Toast ── */
#toast {
  position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%);
  background: #0f172a; color: #fff;
  padding: 11px 22px; border-radius: 10px;
  font-size: 14px; z-index: 2000;
  display: none;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  font-weight: 500;
}
#toast.error { background: var(--danger); }

/* ── 状态 ── */
.loading, .empty { padding: 48px; text-align: center; color: var(--text-muted); }
.error { padding: 16px; color: var(--danger); background: #fee2e2; border-radius: 10px; }

/* ── 语音悬浮按钮 ── */
#voice-btn {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  box-shadow: 0 4px 18px rgba(37,99,235,.45);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
  transition: transform 0.15s, box-shadow 0.15s;
}
#voice-btn:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,99,235,.55); }

/* ── 语音模态框 ── */
#voice-overlay {
  position: fixed; inset: 0;
  background: rgba(15,23,42,.5);
  display: flex; align-items: flex-end; justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(2px);
}
#voice-modal {
  background: #fff;
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,.15);
}
#voice-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky; top: 0; background: #fff; z-index: 1;
}
#voice-header h3 { font-size: 16px; font-weight: 700; }
#voice-body { padding: 22px; }
#voice-hint { color: var(--text-muted); font-size: 13px; margin-bottom: 10px; }
#voice-examples {
  background: #f8fafc;
  border-radius: 10px;
  padding: 14px 16px;
  margin-bottom: 16px;
  font-size: 13px;
  border: 1px solid var(--border);
}
#voice-examples p { font-weight: 700; margin-bottom: 8px; color: var(--text); }
#voice-examples ul { padding-left: 16px; }
#voice-examples li { color: var(--text-muted); margin-bottom: 4px; }
#voice-record-btn {
  width: 100%; padding: 14px; font-size: 15px; border-radius: 10px;
  background: var(--primary); color: #fff; margin-bottom: 14px;
  font-weight: 600;
}
#voice-record-btn:hover { background: var(--primary-hover); }
#voice-record-btn.recording { background: #dc2626; animation: pulse 1s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:.75; } }
#voice-text { font-size: 15px; color: var(--text); min-height: 24px; margin-bottom: 12px; font-style: italic; }
.voice-parsed-title { font-weight: 700; color: #0d9488; margin-bottom: 14px; font-size: 15px; }
.voice-fail { background: #fef3c7; border-radius: 10px; padding: 14px; font-size: 13px; line-height: 2; color: #92400e; }
#voice-result label { display: block; margin-bottom: 12px; font-size: 13px; font-weight: 600; color: var(--text-muted); }
#voice-result label input, #voice-result label select { margin-top: 4px; display: block; width: 100%; }
.text-input-area { display: flex; flex-direction: column; gap: 10px; }
.text-input-area textarea { width: 100%; min-height: 100px; padding: 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 15px; resize: vertical; }
.text-input-area textarea:focus { outline: none; border-color: var(--primary); }
.text-input-area .btn-primary { padding: 12px; font-size: 15px; border-radius: 8px; }

/* ── 底部导航（手机端） ── */
#bottom-nav { display: none; }

/* ── 移动端响应式 ── */
@media (max-width: 900px) {
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .chart-row { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  #sidebar { display: none; }
  #content {
    margin-left: 0;
    padding: 14px 12px 84px;
    overflow-x: hidden;
    max-width: 100vw;
  }

  /* 底部导航 */
  #bottom-nav {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 200;
    box-shadow: 0 -2px 12px rgba(0,0,0,.08);
  }
  .bn-item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    padding: 8px 4px 10px;
    cursor: pointer; color: var(--text-muted); font-size: 11px;
    transition: color 0.15s;
  }
  .bn-item.active { color: var(--primary); }
  .bn-icon { font-size: 20px; margin-bottom: 2px; }
  .bn-center { position: relative; top: -10px; }
  .bn-center .bn-icon {
    background: var(--primary); color: #fff;
    width: 48px; height: 48px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; margin-bottom: 4px;
    box-shadow: 0 4px 12px rgba(37,99,235,.35);
  }
  .bn-center.active .bn-icon { background: #1d4ed8; }
  #voice-btn { bottom: 72px; right: 16px; }

  /* 概览头 */
  .dash-header { flex-direction: column; align-items: stretch; gap: 10px; }
  .dash-range {
    width: 100%;
    flex-direction: column;
    gap: 8px;
    padding: 12px;
    border-radius: 10px;
  }
  .dash-range input[type="date"] {
    width: 100%;
    font-size: 16px;
    padding: 10px 12px;
  }
  .range-sep { text-align: center; }
  .dash-range .btn-primary { width: 100%; padding: 12px; font-size: 15px; text-align: center; }

  /* 页面头 */
  .page-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .header-actions { width: 100%; display: flex; flex-wrap: wrap; gap: 8px; }
  .header-actions input[type="search"],
  .header-actions select { flex: 1; width: auto; min-width: 0; font-size: 16px; }
  .header-actions .btn-primary { white-space: nowrap; }

  /* 统计卡片：手机全宽单列 */
  .stat-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    width: 100%;
  }
  .stat-card {
    padding: 12px;
    gap: 8px;
    min-width: 0;
    overflow: hidden;
  }
  .stat-icon { font-size: 20px; flex-shrink: 0; }
  .stat-body { min-width: 0; }
  .stat-label { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .stat-value { font-size: 16px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .stat-sub { font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* 图表 */
  .chart-row { grid-template-columns: 1fr; gap: 12px; }
  .chart-card { padding: 14px; }
  #chart-trend { max-height: 240px; }

  /* 表格 */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 10px; }
  th, td { white-space: nowrap; padding: 10px 12px; font-size: 13px; }

  /* 模态框 → 底部弹出 */
  #modal-overlay { align-items: flex-end; }
  #modal {
    width: 100%;
    max-width: 100%;
    border-radius: 20px 20px 0 0;
    max-height: 85vh;
  }

  /* 表单字段 */
  #modal-body { padding: 16px; }
  #modal-body label { margin-bottom: 14px; font-size: 14px; }
  #modal-body label input,
  #modal-body label select,
  #modal-body label textarea {
    font-size: 16px;
    padding: 10px 12px;
  }
  .form-actions { gap: 8px; }
  .form-actions button { flex: 1; text-align: center; padding: 12px; font-size: 15px; }
}

/* ── 对账单 ── */
.recon-title {
  text-align: center; font-size: 22px; font-weight: 700;
  margin: 8px 0 4px;
}
.recon-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
  font-size: 13px; color: var(--text-muted); font-style: italic;
  margin-bottom: 16px;
}
.recon-export-bar {
  display: flex; gap: 10px; margin-top: 20px;
}
.recon-table, .recon-summary {
  width: 100%; border-collapse: collapse;
  font-size: 13.5px; margin-bottom: 16px;
}
.recon-table th, .recon-table td,
.recon-summary th, .recon-summary td {
  border: 1px solid #d1d5db; padding: 8px 12px;
}
.recon-table thead tr, .recon-summary thead tr {
  background: #f3f4f6; font-weight: 600;
}
.recon-table tbody tr:nth-child(even) { background: #f9fafb; }
.recon-row-delivery td { }
.recon-row-invoice td { color: #7c3aed; }
.recon-row-payment td { color: #059669; }
.recon-highlight td { font-weight: normal; }

/* 打印样式 */
@media print {
  @page { size: A4; margin: 16mm 14mm; }

  body, #app { background: #fff !important; }

  /* 隐藏所有非打印内容 */
  #sidebar, #bottom-nav, #voice-btn, #voice-overlay,
  #toast, #modal-overlay, .page-header, .recon-export-bar { display: none !important; }

  #app { display: block !important; }
  #content { margin: 0 !important; padding: 0 !important; width: 100% !important; }

  .page { display: none !important; padding: 0 !important; }
  #page-reconciliation { display: block !important; padding: 0 !important; }

  /* 标题区 */
  .recon-title { font-size: 20px; margin-bottom: 6px; }
  .recon-meta {
    flex-direction: column; align-items: flex-end; gap: 3px;
    font-size: 12px; margin-bottom: 12px;
    border-bottom: 1px solid #999; padding-bottom: 8px;
  }

  /* 表格重置：去掉圆角、阴影、overflow */
  .recon-table, .recon-summary {
    display: table !important;
    width: 100% !important;
    border-collapse: collapse !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    font-size: 12px !important;
    margin-bottom: 12px !important;
    overflow: visible !important;
  }
  .recon-table th, .recon-table td,
  .recon-summary th, .recon-summary td {
    border: 1px solid #aaa !important;
    padding: 6px 10px !important;
    white-space: normal !important;
  }
  .recon-table thead tr, .recon-summary thead tr {
    background: #e8e8e8 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .recon-table tbody tr:nth-child(even) {
    background: #f5f5f5 !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .recon-highlight td { font-weight: normal !important; }

  /* 颜色保留 */
  .recon-row-invoice td { color: #7c3aed !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .recon-row-payment td { color: #059669 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .danger-col { color: #dc2626 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .ok-col     { color: #059669 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }
  .warn-col   { color: #d97706 !important; -webkit-print-color-adjust: exact; print-color-adjust: exact; }

  /* 避免表格行跨页断开 */
  tr { page-break-inside: avoid; }
  .recon-summary { page-break-inside: avoid; }
}

/* ── 登录 ── */
#login-overlay {
  position: fixed; inset: 0; background: #0f172a;
  display: flex; align-items: center; justify-content: center; z-index: 9999;
}
#login-overlay.hidden { display: none; }
#login-box {
  background: #fff; border-radius: 16px; padding: 40px 36px;
  width: 320px; display: flex; flex-direction: column; gap: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
}
.login-logo { font-size: 26px; font-weight: 700; color: var(--primary); text-align: center; }
.login-subtitle { font-size: 13px; color: #94a3b8; text-align: center; margin-top: -8px; }
#login-box input {
  border: 1px solid var(--border); border-radius: 8px;
  padding: 10px 12px; font-size: 15px; outline: none;
}
#login-box input:focus { border-color: var(--primary); }
#login-btn {
  background: var(--primary); color: #fff; border: none; border-radius: 8px;
  padding: 11px; font-size: 15px; font-weight: 600; cursor: pointer; margin-top: 4px;
}
#login-btn:hover { background: var(--primary-hover); }
#login-err { color: #dc2626; font-size: 13px; text-align: center; min-height: 18px; }

#sidebar-user {
  padding: 6px 16px 10px; font-size: 13px; color: #94a3b8;
}
#logout-btn {
  margin: auto 12px 16px; background: none; border: 1px solid #334155;
  color: #94a3b8; border-radius: 8px; padding: 7px 12px;
  font-size: 13px; cursor: pointer; text-align: center; display: block; width: calc(100% - 24px);
}
#logout-btn:hover { background: #1e293b; color: #fff; }

/* ── 导入数据 ── */
.import-step {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--card-bg); border-radius: 10px;
  padding: 20px; margin-bottom: 16px;
  box-shadow: var(--shadow);
}
.import-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.import-result {
  padding: 16px; border-radius: 8px; line-height: 1.8; font-size: 14px;
}
.import-result.success { background: #f0fdf4; color: #15803d; border: 1px solid #bbf7d0; }
.import-result.error   { background: #fef2f2; color: #dc2626; border: 1px solid #fecaca; }
.btn-danger { background: #dc2626; color: #fff; border: none; border-radius: 8px; padding: 8px 18px; font-size: 14px; cursor: pointer; }
.btn-danger:hover { background: #b91c1c; }

@media (max-width: 768px) {
  #sidebar li[data-page="import"] { display: none; }
}
