/* Checklist page. Black on white, made to be printed. */
* { margin: 0; padding: 0; box-sizing: border-box; }
body.sheet {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #0B0F1A; background: #fff; max-width: 760px; margin: 0 auto; padding: 40px 28px;
  font-size: 14px; line-height: 1.45; letter-spacing: -0.01em;
}
header { display: flex; align-items: center; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid #D8DCE4; margin-bottom: 18px; }
.pmark {
  width: 34px; height: 34px; border-radius: 50%; background: #2F6BFF; color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 17px; flex: 0 0 34px;
}
header b { display: block; font-size: 16px; letter-spacing: -0.02em; }
header span { display: block; font-size: 12.5px; color: #59606E; }
header .noprint {
  margin-left: auto; font: inherit; font-weight: 600; font-size: 13px;
  border: 1px solid #C9CEDA; border-radius: 999px; padding: 8px 18px; background: #fff; cursor: pointer;
}
ol { list-style: none; }
li { display: flex; align-items: baseline; gap: 10px; padding: 8px 0; border-bottom: 1px solid #EEF0F4; break-inside: avoid; }
li b { flex: 0 0 58px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #2F6BFF; }
.ck { flex: 0 0 14px; width: 14px; height: 14px; border: 1.5px solid #9AA1AF; border-radius: 4px; align-self: center; }
footer { margin-top: 22px; font-size: 12px; color: #59606E; }
@media print {
  .noprint { display: none; }
  body.sheet { padding: 0; }
}
