/* ══════════════════════════════════════════════════════════════════════
   coach-reference-sheet.css
   The multi-staff print page (see coach-reference-sheet.js) + its picker
   checklist overlay. Page styling deliberately does NOT reuse the condensed
   broadcast-card fonts/colors from print-offense.css/coaches.js's single-coach
   card — this is meant to read like a real page of notes, not a spotter card.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Staff picker checklist ── */
.crs-ovl {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(4,9,16,.8);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.crs-picker-card {
  width: 420px; max-width: 100%;
  background: var(--surface-panel, #12161f);
  border-radius: var(--radius-lg, 10px);
  padding: 18px;
  max-height: 80vh;
  display: flex; flex-direction: column;
}
.crs-picker-hdr {
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  color: var(--text-strong, #f0f2f6);
  margin-bottom: 10px;
}
.crs-picker-list { overflow-y: auto; flex: 1; min-height: 0; }
.crs-picker-row {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 4px;
  font-family: var(--font-sans); font-size: 13px;
  color: var(--text-secondary, #b7bfcc);
  border-bottom: 1px solid var(--border-soft, #232a36);
  cursor: pointer;
}
.crs-picker-row:last-child { border-bottom: none; }
.crs-picker-cb { width: 16px; height: 16px; flex: 0 0 auto; }
.crs-picker-actions {
  display: flex; justify-content: flex-end; gap: 10px;
  margin-top: 14px; padding-top: 14px;
  border-top: 1px solid var(--border-soft, #232a36);
}

/* ── The printed sheet itself ── */
.crs-page {
  width: 8.5in; height: 11in;
  background: #FCFCFA; color: #1a1a1a;
  padding: 0.35in 0.4in;
  box-sizing: border-box;
  font-family: Georgia, 'Times New Roman', serif;
  display: flex; flex-direction: column;
  --crs-scale: 1;
}
.crs-hdr {
  text-align: center;
  font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #8a8378;
  padding-bottom: 8px; margin-bottom: 4px;
  border-bottom: 1px solid #1a1a1a;
  flex: 0 0 auto;
}
.crs-grid {
  display: grid; grid-template-columns: 1fr 1px 1fr; column-gap: 22px;
  flex: 1; min-height: 0;
}
.crs-rule { background: #ccc; }
.crs-col { min-width: 0; }
.crs-entry {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: calc(12px * var(--crs-scale));
}
.crs-entry:last-child { border-bottom: none; }
.crs-role {
  font-size: calc(12px * var(--crs-scale));
  font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #8a7a5a;
  line-height: 1;
}
.crs-name {
  font-size: calc(19px * var(--crs-scale));
  font-weight: 700;
  line-height: 1.2;
}
.crs-vitals {
  font-size: calc(12px * var(--crs-scale));
  font-weight: 400;
  color: #777;
  text-transform: none;
  letter-spacing: 0;
}
.crs-bio {
  font-size: calc(12.5px * var(--crs-scale));
  line-height: 1.4;
  margin: calc(4px * var(--crs-scale)) 0 0;
}
.crs-ftr {
  text-align: center;
  font-size: 9px; color: #A6ADB5; letter-spacing: .08em;
  margin-top: 10px; flex: 0 0 auto;
}
