@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,600&family=Lora:ital,wght@0,500;0,600;0,700&display=swap");

:root {
  --ink: #0d0c5c;
  --ink-soft: #201e78;
  --paper: #f7f7fb;
  --card: #ffffff;
  --accent: #ffac33;
  --accent-dark: #d98a17;
  --accent-tint: #fff2dd;
  --gold: #c9932c;
  --gold-tint: #fbf1dc;
  --silver: #8b8fa0;
  --silver-tint: #f1f2f5;
  --bronze: #b06a3e;
  --bronze-tint: #f7ebe2;
  --text: #15142f;
  --muted: #7c7c93;
  --border: #e7e7ef;
  --green: #1c9a56;
  --red: #d6493d;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --shadow: 0 16px 40px -20px rgba(23, 19, 33, 0.35);
  --shadow-sm: 0 6px 18px -10px rgba(23, 19, 33, 0.22);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Montserrat", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* латинська кирилиця Playfair Display занадто грайлива для довгих
   англійських заголовків — для EN використовуємо спокійніший Lora */
html[lang="en"] {
  --serif: "Lora", Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--text);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  line-height: 1.4;
}

a { color: inherit; }

/* ---------- utility bar ---------- */

.utility-bar {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 0;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: border-color .15s, color .15s;
}

.home-btn:hover { border-color: var(--ink); color: var(--ink); }

.lang-toggle {
  display: inline-flex;
  gap: 2px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 3px;
  margin-left: auto;
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background .15s, color .15s;
}

.lang-btn.active { background: var(--ink); color: #fff; }

.lang-btn:not(.active):hover { color: var(--ink); }

/* ---------- hero ---------- */

.hero {
  background: var(--card);
  color: var(--text);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px 36px;
}

.hero-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 50px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 18px;
}

.lede {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 56ch;
  margin: 0 0 26px;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  background: var(--paper);
  border: 1px solid var(--border);
  padding: 9px 16px;
  border-radius: var(--radius-pill);
}

.hero-status strong { color: var(--ink); font-weight: 800; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d17a;
  box-shadow: 0 0 0 4px rgba(52, 209, 122, 0.22);
  flex: none;
}

/* ---------- layout ---------- */

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 28px 24px 70px;
  position: relative;
}

.test-banner {
  background: #fff7e0;
  border: 1px solid #f2dfa0;
  color: #6b551a;
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: 13px;
  line-height: 1.5;
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.layout-main, .layout-side {
  min-width: 0;
}

.layout-side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- year selector ---------- */

.year-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.year-row-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex: none;
}

.year-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  min-width: 0;
}

.year-chips::-webkit-scrollbar { display: none; }

.year-chip {
  flex: none;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}

.year-chip:hover { border-color: var(--ink); color: var(--ink); }

.year-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

/* ---------- stat tiles ---------- */

.stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 22px;
}

.stat-tile {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 16px 18px;
  box-shadow: var(--shadow-sm);
  transition: opacity .2s;
  min-width: 0;
}

.stat-tile.dim { opacity: 0.45; }

.stat-label {
  color: var(--muted);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stat-value {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.stat-value.accent { color: var(--accent-dark); }

/* ---------- controls: tabs + date chips ---------- */

.controls {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.tabs-stack {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tabs-sm { padding: 3px; }

.tabs-sm .pill {
  padding: 7px 13px;
  font-size: 12.5px;
}

.view-hint {
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.5;
  margin: -14px 0 18px;
}

.tabs {
  position: relative;
  display: inline-flex;
  gap: 2px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px;
  width: fit-content;
}

.tabs-indicator {
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: var(--ink);
  border-radius: var(--radius-pill);
  transition: left .25s cubic-bezier(.4,0,.2,1), width .25s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}

.pill {
  position: relative;
  z-index: 1;
  border: none;
  background: transparent;
  color: var(--text);
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: color .15s;
}

.pill.active { color: #fff; }

.pill:not(.active):hover { color: var(--ink); }

.date-chips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}

.date-chips::-webkit-scrollbar { display: none; }

.date-chip {
  flex: none;
  border: 1.5px solid var(--border);
  background: var(--card);
  color: var(--muted);
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}

.date-chip:hover { border-color: var(--ink); color: var(--ink); }

.date-chip.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.caption {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0 0 22px;
}

.sort-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.sort-row-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  flex: none;
}

/* ---------- podium ---------- */

.podium {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
  align-items: end;
  margin-bottom: 20px;
}

.podium-card {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 20px 14px 18px;
  text-align: center;
  min-width: 0;
  order: 2;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform .15s, box-shadow .15s;
}

.podium-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -18px rgba(23, 19, 33, 0.3);
}

.podium-card.rank-1:hover { transform: translateY(-12px); }

.podium-card.rank-1 {
  order: 1;
  padding-top: 26px;
  padding-bottom: 24px;
  border: 1.5px solid var(--gold);
  background: linear-gradient(180deg, var(--gold-tint), var(--card) 55%);
  transform: translateY(-10px);
  box-shadow: 0 20px 36px -18px rgba(201, 147, 44, 0.45);
}

.podium-card.rank-2 { order: 0; border-top: 3px solid var(--silver); }
.podium-card.rank-3 { order: 2; border-top: 3px solid var(--bronze); }

.podium-medal {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  color: #fff;
  background: var(--silver);
}

.rank-1 .podium-medal { background: var(--gold); width: 46px; height: 46px; font-size: 19px; }
.rank-3 .podium-medal { background: var(--bronze); }

.podium-logo {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
}

.podium-name {
  font-weight: 700;
  font-size: 13.5px;
  line-height: 1.3;
  margin-bottom: 10px;
  min-height: 34px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.podium-score {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 26px;
  color: var(--text);
}

.rank-1 .podium-score { color: var(--accent-dark); font-size: 30px; }

.podium-apps {
  color: var(--muted);
  font-weight: 600;
  font-size: 12px;
  margin-top: 4px;
}

/* ---------- ranking card ---------- */

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 22px 4px 8px;
  margin-bottom: 22px;
}

.card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--accent-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  flex: none;
}

.card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 17px;
}

.card-subtitle {
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 600;
}

table {
  width: 100%;
  border-collapse: collapse;
}

thead th {
  text-align: left;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 18px;
  overflow-wrap: break-word;
}

thead th.num, td.num { text-align: right; }

thead th.sort-active { color: var(--ink); }

tbody tr {
  border-top: 1px solid var(--border);
  transition: background .12s;
}

tbody tr:hover { background: #f8f8fc; }

td {
  padding: 13px 18px;
  vertical-align: middle;
}

.rank {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eeeef4;
  color: var(--text);
  font-weight: 800;
  font-size: 12.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.univ-cell {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.univ-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex: none;
}

.univ-name {
  font-weight: 700;
  font-size: 14px;
  line-height: 1.25;
  min-width: 0;
  overflow-wrap: break-word;
}

.delta {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: var(--radius-pill);
}

.delta.up { color: var(--green); background: rgba(28, 154, 86, 0.12); }
.delta.down { color: var(--red); background: rgba(214, 73, 61, 0.12); }
.delta.flat { color: var(--muted); background: #f1ecec; }
.delta.new { color: var(--accent-dark); background: var(--accent-tint); }

.score {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.applications {
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
}

.show-all {
  display: block;
  width: 100%;
  background: none;
  border: none;
  border-top: 1px solid var(--border);
  color: var(--accent-dark);
  font-family: inherit;
  font-weight: 800;
  font-size: 14px;
  padding: 16px 18px;
  cursor: pointer;
  text-align: center;
  margin-top: 6px;
}

.show-all:hover { color: var(--ink); }

/* ---------- side cards ---------- */

.side-card {
  background: var(--card);
  border-radius: var(--radius-md);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.info-box { display: flex; gap: 12px; }

.info-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.info-box p {
  margin: 0;
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.55;
}

.info-box strong { color: var(--ink); }

.legend-title {
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.legend-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
  margin-bottom: 9px;
}

.legend-row:last-child { margin-bottom: 0; }

.source-box p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 10px;
}

.source-box strong { color: var(--text); }

.source-box a {
  color: var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none;
}

.source-box a:hover { text-decoration: underline; }

/* ---------- footer / empty ---------- */

.site-footer {
  text-align: center;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.6;
  padding-top: 10px;
}

.site-footer a { color: var(--ink); font-weight: 700; text-decoration: none; }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 600;
}

.footer-brand:hover { color: var(--text); }

.footer-logo { height: 30px; width: auto; display: block; }

.empty-state {
  padding: 30px 18px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* ---------- university page ---------- */

.uni-wrap { margin-top: 28px; }

.page-nav-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
  font-size: 13.5px;
}

.back-link:hover { color: var(--ink); }

.uni-not-found {
  background: var(--card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.uni-not-found a { color: var(--ink); font-weight: 700; text-decoration: none; }

.uni-hero {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.uni-hero-logo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
}

.uni-hero-eyebrow {
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.uni-hero h1 {
  font-family: var(--serif);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
}

.uni-stats-row { margin: 22px 0; }

.trend-up { color: var(--green); }
.trend-down { color: var(--red); }

.chart-card { padding: 22px 18px 18px; }

.chart-plot { position: relative; }

.chart-wrap { padding: 4px 0 0; }

.chart-dot-hit {
  fill: transparent;
  cursor: pointer;
}

.chart-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -100%) translateY(-10px);
  background: var(--ink);
  color: #fff;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  padding: 6px 10px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .1s;
  z-index: 5;
}

.chart-tooltip.visible { opacity: 1; visibility: visible; }

.chart-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink);
}

.chart-empty {
  padding: 40px 0;
  text-align: center;
  color: var(--muted);
  font-size: 13.5px;
}

.chart-svg { width: 100%; height: auto; overflow: visible; }

.chart-baseline { stroke: var(--border); stroke-width: 1; }

.chart-line {
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.chart-line-all { stroke: var(--accent-dark); }
.chart-line-p1 { stroke: var(--gold); stroke-dasharray: 6 5; }

.chart-dot-all { fill: var(--accent-dark); }
.chart-dot-p1 { fill: var(--gold); }

.chart-axis-label {
  fill: var(--muted);
  font-size: 11px;
  font-family: var(--sans);
  font-weight: 600;
}

.chart-line-compare { stroke: var(--ink-soft); }
.chart-dot-compare { fill: var(--ink-soft); }

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 4px 4px 0;
}

.chart-legend-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

.chart-legend-swatch {
  width: 16px;
  height: 3px;
  border-radius: 2px;
  flex: none;
}

.chart-legend-swatch.dashed {
  background: repeating-linear-gradient(90deg, currentColor 0 6px, transparent 6px 10px);
}

.compare-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 4px 14px;
  flex-wrap: wrap;
}

.compare-label {
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.compare-select {
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--text);
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  cursor: pointer;
  max-width: 100%;
}

.compare-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 20px 0;
}

.compare-col {
  background: var(--card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  padding: 16px 18px;
  min-width: 0;
}

.compare-col-name {
  font-weight: 700;
  font-size: 13.5px;
  margin-bottom: 10px;
  overflow-wrap: break-word;
}

.compare-col.is-primary .compare-col-name { color: var(--accent-dark); }

.compare-metric {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  padding: 5px 0;
  border-top: 1px solid var(--border);
}

.compare-metric:first-of-type { border-top: none; }

.compare-metric span:first-child { color: var(--muted); }
.compare-metric span:last-child { font-weight: 700; }

/* ---------- responsive ---------- */

@media (min-width: 620px) {
  .stats-row { grid-template-columns: repeat(4, 1fr); }
  .controls { flex-direction: row; flex-wrap: wrap; align-items: center; justify-content: space-between; }
  .date-chips { min-width: 0; }
}

@media (min-width: 960px) {
  .layout { grid-template-columns: minmax(0, 1fr) 300px; }
  .layout-side { position: sticky; top: 24px; }
}

@media (max-width: 480px) {
  .podium { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .podium-card.rank-1 { transform: translateY(-6px); padding: 18px 8px 16px; }
  .podium-name { font-size: 12px; min-height: 30px; }
  .podium-score { font-size: 21px; }
  .rank-1 .podium-score { font-size: 24px; }
  thead th:nth-child(3) { display: none; }
  td.num.delta-cell { display: none; }

  table { table-layout: fixed; }
  th, td { padding-left: 10px; padding-right: 10px; }
  thead th:nth-child(1), td:nth-child(1) { width: 40px; }
  thead th:nth-child(4), td:nth-child(4) { width: 62px; }
  thead th:nth-child(5), td:nth-child(5) { width: 80px; }
  thead th { padding-left: 4px; padding-right: 4px; font-size: 9.5px; letter-spacing: 0.02em; }
  .univ-logo { width: 26px; height: 26px; font-size: 10px; }
  .univ-cell { gap: 8px; }
  .compare-panel { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .wrap { padding-left: 16px; padding-right: 16px; }
  .hero { padding-left: 16px; padding-right: 16px; }
  .topbar-inner { padding-left: 16px; padding-right: 16px; }
  th, td { padding-left: 6px; padding-right: 6px; }
  thead th:nth-child(4), td:nth-child(4) { width: 50px; }
  thead th:nth-child(5), td:nth-child(5) { width: 48px; }
}
