/* ==========================================================================
   Cargo Logistics Tracking System (CLTS)
   Institutional stylesheet — Government / INL Bogotá
   ========================================================================== */

:root {
  /* Goldbelt brand palette — light blue, white & orange */
  --navy: #15618f;       /* primary blue (headings, dark surfaces) */
  --navy-2: #0f4d72;     /* darker blue (hover) */
  --blue: #1d7fc0;       /* primary action / bright blue */
  --steel: #e07a2c;      /* orange for accents, borders, icons */
  --accent: #f7901e;     /* Goldbelt orange */
  --accent-2: #d96f12;   /* deep orange */
  --bg: #eaf3fb;         /* light blue background */
  --panel: #ffffff;
  --line: #cfe2f1;       /* light blue border */
  --text: #16334a;       /* dark blue-slate text */
  --muted: #5f7286;
  --ok: #0c5a8a;
  --ok-bg: #e3f0fb;
  --warn: #b85c00;
  --warn-bg: #ffe9d4;
  --danger: #c0392b;
  --danger-bg: #fbe6e2;
  --info: #15618f;
  --info-bg: #e3f0fb;
  --radius: 8px;
  --shadow: 0 1px 3px rgba(20,50,80,.10), 0 6px 20px rgba(20,50,80,.08);
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; max-width: 100%; overflow-x: hidden; }
body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
  font-size: 15px;
}
a { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

/* ---------- Top utility bar ---------- */
.gov-bar {
  background: var(--navy);
  color: #d7e7f3;
  font-size: 12px;
  letter-spacing: .02em;
}
.gov-bar .wrap { display: flex; justify-content: space-between; align-items: center; padding: 6px 0; }
.gov-bar a { color: #e3eef8; }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: #ffffff;
  color: var(--text);
  box-shadow: 0 1px 0 var(--line), 0 2px 12px rgba(35,35,35,.05);
  border-bottom: 3px solid var(--accent);
  position: sticky; top: 0; z-index: 50;
}
.site-header .wrap { display: flex; align-items: center; gap: 18px; padding: 12px 20px; }
.brand { display: flex; align-items: center; gap: 12px; color: var(--text); }
.brand:hover { text-decoration: none; }
.brand .logo { height: 52px; width: auto; display: block; }
.brand .divider { width: 1px; height: 30px; background: var(--line); }
.crest {
  width: 46px; height: 46px; border-radius: 8px;
  background: radial-gradient(circle at 30% 30%, var(--accent), var(--accent-2));
  display: grid; place-items: center; color: #14304a; font-weight: 800; font-size: 18px;
  border: 2px solid #fff;
}
.brand .title { font-weight: 800; font-size: 18px; line-height: 1.1; color: var(--navy); }
.brand .subtitle { font-size: 11px; color: var(--accent-2); letter-spacing: .08em; text-transform: uppercase; font-weight: 700; }
.main-nav { margin-left: auto; display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.main-nav a {
  color: var(--text); padding: 8px 12px; border-radius: 6px; font-size: 14px; font-weight: 600;
}
.main-nav a:hover { background: #eef5fb; color: var(--navy); text-decoration: none; }
.main-nav a.active { color: var(--navy); box-shadow: inset 0 -2px 0 var(--accent); border-radius: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; cursor: pointer; border: 0; border-radius: 6px;
  padding: 10px 18px; font-size: 14px; font-weight: 600; font-family: var(--font);
  background: var(--blue); color: #fff; transition: background .15s, transform .05s;
}
.btn:hover { background: var(--navy-2); text-decoration: none; }
.btn:active { transform: translateY(1px); }
.btn.gold { background: var(--accent); color: #14304a; }
.btn.gold:hover { background: #d96f12; }
.btn.ghost { background: transparent; border: 1px solid var(--line); color: var(--text); }
.btn.ghost:hover { background: #e3eef8; }
.btn.danger { background: var(--danger); }
.btn.sm { padding: 6px 12px; font-size: 13px; }
.btn:disabled { opacity: .5; cursor: not-allowed; }

/* ---------- Hero ---------- */
.hero {
  background:
    linear-gradient(rgba(13,72,114,.82), rgba(21,97,143,.90)),
    repeating-linear-gradient(135deg, #15618f 0 28px, #1a6fa8 28px 56px);
  color: #fff; padding: 64px 0;
}
.hero h1 { font-size: 34px; margin: 0 0 14px; line-height: 1.18; }
.hero p { font-size: 17px; color: #dcebf8; max-width: 720px; margin: 0 0 26px; }
.hero .cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.badge-strip { display: flex; gap: 22px; flex-wrap: wrap; margin-top: 34px; color: #dcebf8; font-size: 13px; }
.badge-strip span::before { content: "\2714  "; color: var(--accent); }

/* ---------- Sections ---------- */
section.block { padding: 52px 0; }
section.block.alt { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 38px; }
.section-head .eyebrow { color: var(--steel); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }
.section-head h2 { font-size: 27px; margin: 8px 0 10px; color: var(--navy); }
.section-head p { color: var(--muted); font-size: 16px; }

.grid { display: grid; gap: 20px; }
.grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.card h3 { margin: 0 0 8px; color: var(--navy); font-size: 17px; }
.card p { color: var(--muted); margin: 0; font-size: 14.5px; }
.card .ico {
  width: 44px; height: 44px; border-radius: 8px; display: grid; place-items: center;
  background: var(--info-bg); color: var(--info); font-size: 22px; margin-bottom: 14px;
}

.module-card { border-left: 4px solid var(--steel); }
.module-card .tag { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--steel); font-weight: 700; }
.sub-list { margin: 12px 0 0; padding: 0; list-style: none; }
.sub-list li { padding: 7px 0; border-top: 1px dashed var(--line); font-size: 14px; color: var(--text); }
.sub-list li::before { content: "\25B8  "; color: var(--accent); }

/* ---------- Stats ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.stat { text-align: center; }
.stat .n { font-size: 30px; font-weight: 800; color: var(--navy); }
.stat .l { color: var(--muted); font-size: 13px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: #b6cfe6; padding: 40px 0 22px; margin-top: 40px; font-size: 14px; }
.site-footer h4 { color: #fff; font-size: 14px; margin: 0 0 12px; text-transform: uppercase; letter-spacing: .05em; }
.site-footer a { color: #d7e7f3; display: block; padding: 3px 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 26px; padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; color: #8fa6bb; font-size: 12.5px; }

/* ---------- Forms / auth ---------- */
.auth-shell { min-height: calc(100vh - 60px); display: grid; place-items: center; padding: 40px 16px;
  background: linear-gradient(rgba(13,72,114,.88), rgba(21,97,143,.92)),
    repeating-linear-gradient(135deg, #15618f 0 28px, #1a6fa8 28px 56px); }
.auth-card { width: 100%; max-width: 430px; background: #fff; border-radius: 12px; box-shadow: 0 18px 50px rgba(0,0,0,.35); overflow: hidden; }
.auth-card .head { background: var(--navy); color: #fff; padding: 22px 26px; }
.auth-card .head h2 { margin: 0; font-size: 20px; }
.auth-card .head p { margin: 4px 0 0; color: #d7e7f3; font-size: 13px; }
.auth-body { padding: 24px 26px 28px; }

.role-toggle { display: flex; background: #e3eef8; border-radius: 8px; padding: 4px; margin-bottom: 20px; }
.role-toggle button { flex: 1; border: 0; background: transparent; padding: 9px; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 13.5px; color: var(--muted); font-family: var(--font); }
.role-toggle button.active { background: #fff; color: var(--navy); box-shadow: var(--shadow); }

.field { margin-bottom: 16px; }
.field label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 10px 12px; border: 1px solid var(--line); border-radius: 6px;
  font-size: 14px; font-family: var(--font); background: #fff; color: var(--text);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--steel); outline-offset: -1px; border-color: var(--steel); }
.hint { font-size: 12px; color: var(--muted); margin-top: 5px; }

/* captcha */
.captcha {
  display: flex; align-items: center; gap: 12px; background: #e8f1fa;
  border: 1px solid var(--line); border-radius: 8px; padding: 12px; margin-bottom: 16px;
}
.captcha .puzzle {
  font-family: "Courier New", monospace; font-weight: 800; font-size: 22px; letter-spacing: 3px;
  color: var(--navy); background: repeating-linear-gradient(45deg,#dce9f6 0 6px,#cfe2f1 6px 12px);
  padding: 6px 14px; border-radius: 6px; user-select: none; transform: skewX(-6deg);
  text-decoration: line-through; text-decoration-color: rgba(185,149,74,.45);
}
.captcha .reload { background: none; border: 0; cursor: pointer; color: var(--steel); font-size: 18px; }
.captcha .check { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
.captcha .recaptcha-box { display:flex; align-items:center; gap:10px; }
.captcha input[type=checkbox] { width: 22px; height: 22px; }

.alert { padding: 11px 14px; border-radius: 6px; font-size: 13.5px; margin-bottom: 16px; border: 1px solid; }
.alert.err { background: var(--danger); border-color: #8f2b20; color: #fff; }
.alert.ok  { background: var(--ok-bg); border-color: var(--accent); color: var(--ok); }
.alert.info{ background: var(--info-bg); border-color: #b9d6ee; color: var(--info); }

/* ---------- App shell (dashboards) ---------- */
.app { display: grid; grid-template-columns: 250px 1fr; min-height: calc(100vh - 60px); }
.side {
  background: var(--navy); color: #d7e7f3; padding: 18px 0;
}
.side .who { padding: 0 20px 16px; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 12px; }
.side .who .name { color: #fff; font-weight: 700; }
.side .who .role { font-size: 12px; color: #a9c4dc; text-transform: uppercase; letter-spacing: .05em; }
.side nav a {
  display: flex; align-items: center; gap: 10px; color: #d7e7f3; padding: 11px 20px; font-size: 14px; font-weight: 500;
}
.side nav a:hover { background: rgba(255,255,255,.08); text-decoration: none; }
.side nav a.active { background: var(--blue); color: #fff; border-left: 3px solid var(--accent); padding-left: 17px; }
.side .module-label { padding: 14px 20px 6px; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: #7e98b0; }

.content { padding: 26px 30px; background: var(--bg); }
.content .page-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 22px; flex-wrap: wrap; gap: 12px; }
.content .page-head h1 { font-size: 23px; color: var(--navy); margin: 0; }
.content .page-head .crumb { font-size: 12px; color: var(--muted); }

.panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 22px; }
.panel .panel-head { padding: 14px 18px; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; }
.panel .panel-head h3 { margin: 0; font-size: 15px; color: var(--navy); }
.panel .panel-body { padding: 18px; }

/* ---------- KPI cards ---------- */
.kpis { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 22px; }
.kpi { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); }
.kpi .n { font-size: 26px; font-weight: 800; color: var(--navy); }
.kpi .l { color: var(--muted); font-size: 13px; }
.kpi .l b { display:block; }
.kpi.ok { border-top: 3px solid var(--ok); }
.kpi.info { border-top: 3px solid var(--info); }
.kpi.warn { border-top: 3px solid var(--warn); }
.kpi.accent { border-top: 3px solid var(--accent); }

/* ---------- Tables ---------- */
table.data { width: 100%; border-collapse: collapse; font-size: 13.5px; }
table.data th, table.data td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--line); }
table.data th { background: #e8f1fa; color: var(--navy); font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .03em; }
table.data tbody tr:hover { background: #f1f7fc; }
table.data td.actions { white-space: nowrap; }

.status-pill { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: 11.5px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; border: 1px solid transparent; }
/* charcoal + gold only — differentiated by fill vs outline */
.s-onorder { background: #fff; color: #5f7286; border-color: #b6cfe6; border-style: dashed; } /* dashed = not yet arrived */
.s-received { background: #e3f0fb; color: #0c5a8a; border-color: #b9d6ee; }      /* light gold */
.s-warehouse { background: #e6eef6; color: #1a6fa8; border-color: #cdddec; }      /* grey */
.s-consolidated { background: var(--warn-bg); color: var(--warn); border-color: #ffd0a3; } /* cream gold */
.s-intransit { background: #fff; color: var(--accent-2); border-color: var(--accent); }   /* outlined gold */
.s-delivered { background: #15618f; color: #fff; }                                /* black = final */
.s-active { background: var(--accent); color: #14304a; }                           /* solid gold */
.s-inactive { background: #fff; color: #7e98b0; border-color: var(--line); }       /* muted */

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li { position: relative; padding: 0 0 22px 28px; border-left: 2px solid var(--line); }
.timeline li:last-child { border-left-color: transparent; }
.timeline li .dot { position: absolute; left: -8px; top: 2px; width: 14px; height: 14px; border-radius: 50%; background: var(--steel); border: 3px solid #fff; box-shadow: 0 0 0 1px var(--line); }
.timeline li.done .dot { background: var(--ok); }
.timeline li .when { font-size: 12px; color: var(--muted); }
.timeline li .what { font-weight: 600; color: var(--navy); }
.timeline li .where { font-size: 13px; color: var(--muted); }

/* ---------- Upload zone ---------- */
.drop {
  border: 2px dashed var(--steel); border-radius: 10px; padding: 32px; text-align: center;
  background: #f1f7fc; cursor: pointer; transition: background .15s;
}
.drop:hover, .drop.over { background: #e3f0fb; }
.drop .big { font-size: 30px; }
.drop p { margin: 8px 0 0; color: var(--muted); }

/* ---------- Misc ---------- */
.toolbar { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; margin-bottom: 16px; }
.toolbar input[type=search], .toolbar select { padding: 9px 12px; border: 1px solid var(--line); border-radius: 6px; font-size: 14px; font-family: var(--font); }
.spacer { flex: 1; }
.muted { color: var(--muted); }
.center { text-align: center; }
.mt0 { margin-top: 0; }
.tag-chip { display:inline-block; background:#e3eef8; color:var(--muted); border-radius:4px; padding:2px 8px; font-size:12px; }

.notice { background: var(--warn-bg); border: 1px solid #ffd0a3; color: var(--warn); padding: 10px 14px; border-radius: 6px; font-size: 13px; margin-bottom: 18px; }

/* track lookup */
.track-box { max-width: 620px; margin: 0 auto; }
.track-form { display: flex; gap: 10px; }
.track-form input { flex: 1; padding: 14px 16px; font-size: 16px; border: 1px solid var(--line); border-radius: 8px; }

/* ---------- Workflow / flowchart ---------- */
.wf-legend { display:flex; gap:18px; flex-wrap:wrap; justify-content:center; margin:0 auto 30px; max-width:900px; }
.wf-legend .lg { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); }
.wf-legend .sw { width:26px; height:16px; border-radius:4px; border:1px solid var(--line); }

.wf-stage { background:#fff; border:1px solid var(--line); border-radius:var(--radius); box-shadow:var(--shadow); margin-bottom:18px; overflow:hidden; }
.wf-stage .wf-head { display:flex; align-items:center; gap:14px; padding:14px 18px; background:linear-gradient(90deg,var(--navy-2),var(--blue)); color:#fff; }
.wf-stage .wf-num { width:34px; height:34px; border-radius:50%; background:var(--accent); color:#14304a; display:grid; place-items:center; font-weight:800; flex-shrink:0; }
.wf-stage .wf-head h3 { margin:0; font-size:16px; }
.wf-stage .wf-head .meta { margin-left:auto; display:flex; gap:8px; flex-wrap:wrap; }
.wf-stage .wf-head .chip { background:rgba(255,255,255,.16); color:#fff; border-radius:999px; padding:3px 11px; font-size:11.5px; font-weight:600; }
.wf-body { padding:20px 18px; }

.flow { display:flex; align-items:stretch; flex-wrap:wrap; gap:0; }
.flow .node {
  background:#e3f0fb; border:1.5px solid var(--steel); border-radius:7px; padding:10px 14px;
  font-size:13px; font-weight:600; color:var(--navy); min-width:120px; max-width:190px; display:flex; align-items:center; text-align:center; justify-content:center;
}
.flow .node.start, .flow .node.end { border-radius:24px; background:var(--navy); color:#fff; border-color:var(--navy); }
.flow .node.decision { background:var(--warn-bg); border-color:#d9b85a; color:#7a5a00; border-radius:7px; }
.flow .node.io { background:#e3eef8; border-style:dashed; }
.flow .node.alt { background:var(--danger-bg); border-color:#15618f; color:var(--danger); }
.flow .node.conn { min-width:0; width:40px; height:40px; border-radius:50%; padding:0; background:#fff; border:2px solid var(--accent); color:var(--accent-2); font-weight:800; }
.flow .arrow { display:flex; align-items:center; color:var(--steel); font-size:20px; padding:0 8px; }
.flow .arrow.down { width:100%; justify-content:flex-start; padding:6px 0 6px 52px; }
.flow .arrow .lbl { font-size:11px; color:var(--muted); font-weight:700; margin:0 4px; }

.wf-detail { margin-top:14px; border-top:1px dashed var(--line); padding-top:12px; font-size:13.5px; color:var(--muted); }
.wf-detail b { color:var(--text); }

.sop-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }
.sop-gallery a { display:block; border:1px solid var(--line); border-radius:8px; overflow:hidden; box-shadow:var(--shadow); background:#fff; }
.sop-gallery img { display:block; width:100%; height:200px; object-fit:cover; object-position:top; }
.sop-gallery .cap { padding:8px 12px; font-size:12.5px; color:var(--navy); font-weight:600; }

.map-table { width:100%; border-collapse:collapse; font-size:13.5px; }
.map-table th, .map-table td { padding:10px 12px; border:1px solid var(--line); text-align:left; vertical-align:top; }
.map-table th { background:#e8f1fa; color:var(--navy); }

label.chk { display:flex; align-items:center; gap:9px; font-size:13.5px; color:var(--text); padding:7px 0; }
label.chk input { width:18px; height:18px; }

/* ---------- Language switch ---------- */
.lang-switch {
  position: fixed; right: 16px; bottom: 16px; z-index: 1000;
  display: flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff; border: 1px solid var(--accent);
  border-radius: 999px; padding: 6px 8px 6px 14px; box-shadow: 0 8px 24px rgba(0,0,0,.28);
}
.lang-switch .globe { color: var(--accent); font-size: 14px; }
.lang-switch select {
  appearance: none; -webkit-appearance: none; background: transparent; border: 0; color: #fff;
  font-family: var(--font); font-size: 13px; font-weight: 600; padding: 4px 22px 4px 4px; cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%);
  background-position: right 9px center, right 4px center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat;
}
.lang-switch select option { color: #16334a; background: #fff; }
.lang-switch .lang-spin { display: none; width: 13px; height: 13px; border: 2px solid rgba(212,184,106,.35); border-top-color: var(--accent); border-radius: 50%; animation: lang-rot .7s linear infinite; }
.lang-switch.working .lang-spin { display: inline-block; }
.lang-switch.offline { border-color: #7e98b0; }
.lang-switch.offline::after { content: "offline"; font-size: 10px; color: var(--accent); margin-left: 2px; }
@keyframes lang-rot { to { transform: rotate(360deg); } }

/* ---------- Responsive ---------- */
@media (max-width:900px){ .sop-gallery { grid-template-columns:repeat(2,1fr); } }
@media (max-width:600px){ .sop-gallery { grid-template-columns:1fr; } .flow .node { max-width:none; } }
@media (max-width: 900px) {
  .grid.cols-3, .grid.cols-4, .stat-row, .kpis { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .app { grid-template-columns: 1fr; }
  .side { display: flex; flex-direction: column; }
  .side nav { display: flex; flex-wrap: wrap; }
  .side nav a { flex: 1 1 auto; }
}
@media (max-width: 600px) {
  .grid.cols-2, .grid.cols-3, .grid.cols-4, .stat-row, .kpis { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .main-nav { display: none; }
  .hero h1 { font-size: 26px; }
  .track-form { flex-direction: column; }
}

/* ===== Size-to-fit: keep everything inside the window on any screen ===== */
/* Wide tables (PO line items, Cargo On-Hand Report) scroll inside their card
   instead of stretching the whole page. */
.panel .panel-body { overflow-x: auto; }
table.data { min-width: 0; }

/* Admin / Purchase Orders / Reports content fills the window fluidly. */
.app { width: 100%; max-width: 100%; }
.content { width: 100%; min-width: 0; }
.content > * { max-width: 100%; }

/* Button groups in page headers wrap instead of overflowing. */
.content .page-head { flex-wrap: wrap; row-gap: 10px; }
.toolbar { flex-wrap: wrap; }

@media (max-width: 1024px) {
  .content { padding: 22px 18px; }
}
@media (max-width: 768px) {
  .wrap { padding: 0 14px; }
  .content { padding: 18px 14px; }
  table.data { font-size: 12.5px; }
  table.data th, table.data td { padding: 8px 9px; }
  .kpis { gap: 10px; }
  .kpi .n { font-size: 22px; }
}
@media (max-width: 480px) {
  body { font-size: 14px; }
  .content .page-head h1 { font-size: 20px; }
  table.data { font-size: 12px; }
  table.data th, table.data td { padding: 7px 7px; }
}
