:root {
  --green: #1B5E3F;
  --cream: #F8F5EC;
  --gold: #B8860B;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --red: #C62828;
}
* { box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
body {
  margin: 0; background: var(--cream); color: var(--text);
  font-family: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
  font-size: 18px; line-height: 1.7;
}
.wrap { max-width: 480px; margin: 0 auto; padding: 24px 20px 48px; }
.clock { font-size: 56px; font-weight: 700; letter-spacing: 2px; text-align: center; color: var(--green); margin: 12px 0 4px; }
.today { text-align: center; color: var(--muted); font-size: 18px; margin-bottom: 24px; }
.who { text-align: center; font-size: 22px; font-weight: 600; margin-bottom: 20px; }
.btn {
  display: block; width: 100%; min-height: 88px; border: none; border-radius: 16px;
  font-size: 28px; font-weight: 700; color: #fff; background: var(--green);
  cursor: pointer; margin-bottom: 16px;
}
.btn.out { background: var(--gold); }
.btn:disabled { background: #bdbdbd; }
.btn.sub { min-height: 64px; font-size: 20px; background: #fff; color: var(--green); border: 2px solid var(--green); }
.card { background: #fff; border-radius: 16px; padding: 16px 18px; margin-bottom: 16px; }
.row { display: flex; justify-content: space-between; align-items: center; gap: 8px; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 17px; }
.row:last-child { border-bottom: none; }
.abnormal { color: var(--red); font-weight: 600; }
.field { width: 100%; min-height: 64px; font-size: 22px; padding: 0 14px; border: 2px solid #ddd; border-radius: 12px; margin-bottom: 14px; background: #fff; }
.hint { text-align: center; color: var(--muted); font-size: 16px; }
h2 { font-size: 20px; margin: 24px 0 12px; }
.row button { min-height: 44px; min-width: 52px; font-size: 17px; border-radius: 10px; border: 2px solid var(--green); background: #fff; color: var(--green); margin-left: 6px; cursor: pointer; }

/* 待審項目：手機窄畫面用上下兩行呈現，避免文字被擠斷 */
.item { padding: 12px 0; border-bottom: 1px solid #eee; }
.item:last-child { border-bottom: none; }
.item .l1 { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; font-weight: 600; margin-bottom: 6px; }
.item .l2 { display: flex; justify-content: space-between; align-items: center; gap: 10px; color: var(--muted); font-size: 16px; }
.item .l1 span, .item .l2 span { white-space: nowrap; }
.item .l2 .ellipsis { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.item button { min-height: 44px; min-width: 56px; font-size: 17px; border-radius: 10px; border: 2px solid var(--green); background: #fff; color: var(--green); margin-left: 8px; cursor: pointer; }
.item button.no { border-color: #bbb; color: #666; }
/* 說明文字：完整換行顯示，不截斷 */
.item .tip { margin-top: 6px; font-size: 15px; color: var(--muted); line-height: 1.6; }
