@import url("https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,500;8..60,600&display=swap");

:root {
  --ink: #173042;
  --muted: #62737d;
  --paper: #fffaf1;
  --white: #fffefa;
  --teal: #176b73;
  --aqua: #e5f4ef;
  --line: #d7e3df;
  --amber: #dfa03c;
}

* { box-sizing: border-box; }
html body {
  max-width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
}

.report-home {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  min-height: 64px;
  align-items: center;
  padding: 0 max(20px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(23,48,66,.12);
  background: rgba(255,250,241,.96);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(16px);
}
.report-home::before { content: "←"; margin-right: 9px; color: var(--teal); }

body .onepage,
body .anotherpage {
  display: block;
  width: min(1180px, 100%);
  max-width: 100%;
  margin: 28px auto;
  padding: 25px !important;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 9px 28px rgba(23,107,115,.06);
}

body .noprint {
  position: static;
  width: min(1180px, 100%);
  height: auto;
  margin: 0 auto 24px;
  padding: 14px 18px;
  border-left: 4px solid var(--amber);
  background: var(--aqua);
  color: var(--ink);
}

body table { width: 100%; border-color: var(--line); background: white; }
body caption { color: var(--ink); font: 600 1.35rem/1.3 "Source Serif 4", Georgia, "Times New Roman", serif; }
body td,
body th { padding: 9px 11px; border-color: var(--line); }
.align-left { text-align: left !important; }
.align-center { text-align: center !important; }
body .mSection { background: var(--aqua); }
body .median { background: #fff4cf; }
body .deviation { background: #e9f6f5; }
body col.odd { background: #f7f8f4; }

@media (max-width: 680px) {
  body .onepage,
  body .anotherpage {
    width: calc(100% - 20px);
    max-width: calc(100vw - 20px);
    padding: 14px !important;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
  }
  body .onepage > table,
  body .anotherpage > table { min-width: 900px; }
}
