/* ============================================================
   印刷品质量检测 — 主题样式（深色 + 绿色 accent，参考条码评级项目）
   ============================================================ */
:root {
  --bg-primary: #1a1a1a;
  --bg-secondary: #212121;
  --bg-card: #2a2a2a;
  --bg-hover: #333;
  --border: rgba(255,255,255,.08);
  --border-hover: rgba(68,204,68,.25);
  --text-bright: #fff;
  --text-normal: #bebebe;
  --text-dim: #6d6d6d;
  --label-bright: #ffd700;   /* 参数标签亮色（金色，深色主题高对比） */
  --accent: #44CC44;
  --accent-dim: rgba(68,204,68,.08);
  --accent-hover: #55dd55;
  --warn: #ffaa00;
  --warn-dim: rgba(255,170,0,.1);
  --danger: #ef4444;
  --danger-dim: rgba(239,68,68,.1);
  --blue: #4da6ff;
  --blue-dim: rgba(77,166,255,.1);
  --green: #44CC44;
  --yellow: #ffaa00;
  --red: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 8px 30px rgba(0,0,0,.35);
  --shadow-sm: 0 2px 10px rgba(0,0,0,.25);
  --font: -apple-system,BlinkMacSystemFont,'Segoe UI','PingFang SC','Microsoft YaHei',sans-serif;
}

* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-normal);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  overflow: hidden;
  line-height: 1.6;
}

