/* Shelter staff report (/admin/shelter-report) — printable digest of volunteer
   field notes per dog. The @media print block hides the site header so a
   print-to-PDF gives a clean handoff. */

.report-controls { margin-bottom: 1rem; }
.report-head h1 { margin: 0 0 0.25rem; }
.report-row { display: grid; grid-template-columns: 140px 1fr; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid var(--line); page-break-inside: avoid; }
.report-row img { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 6px; background: #ece6da; }
.report-row h2 { margin: 0 0 0.2rem; font-size: 1.1rem; }
.report-row h2 .muted { font-weight: normal; font-size: 0.85rem; }
.report-deadline { color: var(--bad); margin: 0.3rem 0; font-size: 0.9rem; }
.report-traits { list-style: none; padding: 0; margin: 0.4rem 0; display: flex; flex-wrap: wrap; gap: 0.4rem; }
.report-traits li { font-size: 0.8rem; background: #f1ede3; padding: 0.2rem 0.55rem; border-radius: 999px; }
.report-traits li span { color: var(--muted); margin-right: 0.25rem; }
.report-notes { margin: 0.5rem 0; padding: 0.5rem 0.85rem; border-left: 3px solid var(--accent); background: #fff; font-size: 0.92rem; }
.report-notes footer { color: var(--muted); font-size: 0.8rem; margin-top: 0.25rem; }
.report-meta { font-size: 0.85rem; margin: 0.4rem 0 0; color: var(--muted); }

@media print {
  header, .report-controls, footer { display: none !important; }
  main { padding: 0; max-width: none; }
  body { background: #fff; }
  .report-row { page-break-inside: avoid; }
}
