/* ===== PRINT BASE STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Work Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 11pt;
  color: #2a231a;
  background: white;
  padding: 0.5in;
  line-height: 1.5;
}

h1, h2, h3, h4 { line-height: 1.2; text-wrap: balance; }
p, li { text-wrap: pretty; }

/* Header */
.print-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 10pt;
  border-bottom: 2pt solid #4a7c59;
  margin-bottom: 18pt;
}
.print-logo h2 {
  font-size: 14pt;
  font-weight: 700;
  color: #4a7c59;
}
.print-logo p { font-size: 9pt; color: #7a7268; margin-top: 2pt; }
.print-meta { text-align: right; font-size: 9pt; color: #7a7268; }

/* Tables */
table { width: 100%; border-collapse: collapse; margin-bottom: 12pt; }
th {
  text-align: left;
  padding: 6pt 8pt;
  background: #f2ede4;
  color: #7a7268;
  font-size: 8pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1pt solid #cdc4b5;
}
td {
  padding: 4pt 8pt;
  border-bottom: 1pt solid #e8e4de;
  vertical-align: top;
  font-size: 10pt;
}
tr:last-child td { border-bottom: none; }

/* Lined rows (fill-in fields) */
.lined-row {
  border-bottom: 1pt solid #d8d0c4;
  min-height: 26pt;
  display: flex;
  align-items: center;
  padding: 3pt 0;
  font-size: 10pt;
}
.lined-row.dotted { border-bottom-style: dotted; }
.field-label {
  font-size: 8pt;
  color: #7a7268;
  min-width: 110pt;
  font-weight: 700;
}

/* Grid */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18pt; margin-bottom: 14pt; }
.three-col { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12pt; }

/* Day columns for weekly plan */
.week-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6pt; margin-bottom: 12pt; }
.day-col { border: 1pt solid #cdc4b5; border-radius: 4pt; overflow: hidden; }
.day-head { background: #4a7c59; color: white; padding: 4pt 6pt; font-size: 8pt; font-weight: 700; text-align: center; text-transform: uppercase; letter-spacing: 0.05em; }
.day-body { padding: 6pt; }
.time-slot { border-bottom: 1pt dotted #d8d0c4; min-height: 38pt; margin-bottom: 4pt; padding-bottom: 4pt; }
.time-label { font-size: 7pt; color: #b8b0a5; text-transform: uppercase; letter-spacing: 0.04em; }
.hours-note { font-size: 8pt; color: #7a7268; margin-top: 3pt; }

/* Footer line */
.doc-footer {
  margin-top: 14pt;
  padding-top: 8pt;
  border-top: 1pt solid #d8d0c4;
  font-size: 8pt;
  color: #7a7268;
}

/* Highlight row */
.total-row { background: #d0ddd4; font-weight: 700; }

/* Signature area */
.sig-row { display: flex; gap: 30pt; font-size: 9pt; margin-top: 10pt; }

/* Section label */
.section-label {
  font-size: 8pt;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #7a7268;
  margin-bottom: 6pt;
}

@media print {
  body { padding: 0.4in; }
  @page { margin: 0.4in; }
}
