:root {
  --ink: #15110b;
  --gold: #94671f;
  --line: #b99a56;
  --soft: #fff6dc;
  font-family: Arial, sans-serif;
}
body {
  margin: 0;
  background: #ece4d1;
  color: var(--ink);
  line-height: 1.45;
}
.sheet {
  width: min(8.5in, calc(100% - 24px));
  min-height: 11in;
  margin: 18px auto;
  background: #fffdf6;
  border: 1px solid #d7c796;
  padding: .55in;
  box-shadow: 0 14px 50px rgba(0,0,0,.18);
}
h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  letter-spacing: 0;
}
h1 { font-size: 34px; margin: 0 0 14px; text-transform: uppercase; line-height: 1.05; }
h2 { font-size: 22px; margin: 24px 0 12px; }
.notice {
  border: 1px solid var(--line);
  background: var(--soft);
  padding: 12px;
}
.line {
  min-height: 36px;
  border-bottom: 1px solid var(--line);
  padding-top: 10px;
}
.box {
  min-height: 88px;
  border: 1px solid var(--line);
  padding: 10px;
  margin: 10px 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin: 12px 0;
}
td, th {
  border: 1px solid var(--line);
  padding: 9px;
  height: 34px;
  vertical-align: top;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.mini-card {
  min-height: 190px;
  border: 1px solid var(--line);
  padding: 16px;
  background: #fffaf0;
}
.mini-card h2 { margin-top: 0; }
.red { border-top: 8px solid #d84c4c; }
.orange { border-top: 8px solid #df8b35; }
.yellow { border-top: 8px solid #d9b42f; }
.green { border-top: 8px solid #4fae70; }
.lime { border-top: 8px solid #b7d94a; }
.teal { border-top: 8px solid #2fbfb2; }
.blue { border-top: 8px solid #3aa4cf; }
.midnight { border-top: 8px solid #243d90; }
.indigo { border-top: 8px solid #555dc7; }
.pink { border-top: 8px solid #e879ad; }
.violet { border-top: 8px solid #9a64c9; }
.gold { border-top: 8px solid #c89b37; }
.silver { border-top: 8px solid #aeb8c8; }
.white { border-top: 8px solid #e9e7dc; }
.black { border-top: 8px solid #161616; }
.rainbow { border-top: 8px solid #d84c4c; border-image: linear-gradient(90deg,#d84c4c,#df8b35,#d9b42f,#4fae70,#3aa4cf,#555dc7,#9a64c9) 1; }
@media print {
  body { background: white; }
  .sheet {
    width: auto;
    min-height: auto;
    margin: 0;
    border: 0;
    box-shadow: none;
  }
}
