/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  /* Palette */
  --bg:       #f8f2ea;
  --ink:      #26190f;
  --ink-2:    #4a3728;
  --muted:    #8a7060;
  --line:     #ead9c8;
  --line-2:   #f0e4d6;
  --card:     #ffffff;
  --card-2:   #fdf9f5;
  --brand:    #9a6440;
  --brand-d:  #7a4e30;
  --brand-l:  #c8916a;
  --brand-2:  #d4a87a;
  --warm:     #f5e8d8;
  --warm-2:   #fdf3e8;
  --danger:   #a8312a;
  --ok:       #1a6e42;
  --gold:     #c49a3c;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(60,35,15,0.07);
  --shadow-sm: 0 4px 12px rgba(60,35,15,0.08);
  --shadow:    0 8px 28px rgba(60,35,15,0.10);
  --shadow-lg: 0 20px 48px rgba(60,35,15,0.13);

  /* Radii */
  --r-sm:  8px;
  --r-md:  14px;
  --r-lg:  20px;
  --r-xl:  26px;

  /* Transitions */
  --ease:  cubic-bezier(0.22, 0.68, 0, 1.1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  background: #f5ede2;
  background-image:
    radial-gradient(ellipse 80% 60% at 10% 0%,   #f0dcc8 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 90% 100%,  #ead5bc 0%, transparent 60%),
    radial-gradient(ellipse 100% 80% at 50% 50%,  #faf4ec 0%, transparent 100%);
  min-height: 100vh;
}

/* Subtle background orbs */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -1;
  opacity: 0.25;
  pointer-events: none;
}
.orb-1 { width: 480px; height: 480px; left: -120px; top: -100px; background: #c89060; }
.orb-2 { width: 380px; height: 380px; right: -100px; top: 30%;   background: #d8ac80; }

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 28px 24px 56px;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(130deg, #4e2c16 0%, #7a4c2c 40%, #a8703e 75%, #c4925a 100%);
  border-radius: var(--r-xl);
  color: #fff8f0;
  padding: 32px 32px 28px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 20px;
  grid-template-columns: 1.4fr 0.6fr;
  animation: rise 0.5s var(--ease);
}

/* Decorative grain overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  opacity: 0.6;
  pointer-events: none;
  border-radius: inherit;
}

/* Decorative circle accent */
.hero::after {
  content: '';
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
  right: -80px;
  top: -120px;
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,230,200,0.7);
}

h1 {
  margin: 0;
  font-family: "Lora", serif;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-size: clamp(28px, 3.5vw, 52px);
  font-variant-numeric: lining-nums tabular-nums;
}

.subtitle {
  margin: 10px 0 0;
  color: rgba(255,230,200,0.75);
  font-size: 14px;
  letter-spacing: 0.03em;
}

.hero-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}

.hero-actions label {
  display: grid;
  gap: 5px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(255,225,195,0.8);
  text-transform: uppercase;
}

.hero-actions input {
  border: 1px solid rgba(255,228,200,0.35);
  background: rgba(255,240,220,0.15);
  color: #fff8f0;
  border-radius: var(--r-sm);
  padding: 9px 11px;
  font-size: 14px;
  backdrop-filter: blur(4px);
  transition: border-color 0.2s, background 0.2s;
}
.hero-actions input:focus {
  outline: none;
  border-color: rgba(255,210,170,0.6);
  background: rgba(255,240,220,0.22);
}

.upload-status {
  font-size: 11.5px;
  border: 1px solid rgba(255,235,210,0.3);
  border-radius: var(--r-sm);
  padding: 7px 10px;
  background: rgba(255,245,230,0.12);
  color: rgba(255,240,210,0.85);
  line-height: 1.4;
}
.upload-status-success { border-color: rgba(160,230,190,0.5); background: rgba(160,230,190,0.12); }
.upload-status-error   { border-color: rgba(240,160,160,0.5); background: rgba(240,160,160,0.12); }
.upload-status-info    { border-color: rgba(255,235,210,0.3); background: rgba(255,245,230,0.12); }

/* ============================================================
   KPI GRID
============================================================ */
.kpi-grid {
  margin-top: 18px;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kpi {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-top: 3px solid var(--brand-2);
  box-shadow: var(--shadow-sm);
  border-radius: var(--r-md);
  padding: 18px 16px 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.kpi:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.kpi .label {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

.kpi .value {
  margin-top: 8px;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}

.kpi .hint {
  margin-top: 6px;
  font-size: 12.5px;
  color: var(--muted);
}

/* ============================================================
   LAYOUT GRID
============================================================ */
.layout {
  margin-top: 18px;
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

/* ============================================================
   CARDS
============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  padding: 22px 22px 18px;
  animation: rise 0.5s var(--ease);
  transition: box-shadow 0.25s;
}
.card:hover { box-shadow: var(--shadow); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h2 {
  margin: 0 0 16px;
  font-family: "Lora", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variant-numeric: lining-nums tabular-nums;
}

h3 {
  margin: 18px 0 10px;
  font-family: "Lora", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink-2);
}

/* ============================================================
   FORMS
============================================================ */
.form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.check-line {
  display: flex !important;
  align-items: center;
  gap: 9px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  font-size: 13px;
}

.check-line input[type="checkbox"] { width: auto; margin: 0; }

.qualification-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px;
  background: var(--card-2);
}

.qualification-grid .check-line { font-size: 13px; color: var(--ink-2); }

.form-grid .full { grid-column: 1 / -1; }

input, select, button { font: inherit; }

input, select {
  width: 100%;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  padding: 10px 13px;
  background: var(--card);
  color: var(--ink);
  transition: border-color 0.18s, box-shadow 0.18s;
  font-size: 14px;
}
input:focus, select:focus {
  outline: none;
  border-color: var(--brand-l);
  box-shadow: 0 0 0 3px rgba(154,100,64,0.12);
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  padding: 10px 16px;
  cursor: pointer;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
  transition: transform 0.18s var(--ease), box-shadow 0.18s, background 0.18s;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0px); }

.btn.primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  color: #fff;
  border-color: var(--brand-d);
  box-shadow: 0 4px 14px rgba(122,78,48,0.28);
}
.btn.primary:hover { box-shadow: 0 6px 20px rgba(122,78,48,0.36); }

.btn.ghost {
  background: var(--card);
  border-color: var(--line);
  color: var(--ink-2);
  box-shadow: var(--shadow-xs);
}
.btn.ghost:hover { background: var(--warm-2); border-color: var(--brand-2); }

.btn.danger {
  background: #fff5f4;
  border-color: #f2c4c0;
  color: var(--danger);
}
.btn.danger:hover { background: #ffe8e6; }

.file-label {
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* ============================================================
   CHIPS & BADGES
============================================================ */
.chip {
  display: inline-flex;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: var(--warm);
  color: var(--brand);
  border: 1px solid var(--line);
}

.mini {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
}

/* ============================================================
   LIST ITEMS
============================================================ */
.hidden { display: none !important; }

.list-block {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.list-item {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 14px 16px;
  display: grid;
  gap: 8px;
  background: var(--card-2);
  transition: border-color 0.2s;
}
.list-item:hover { border-color: var(--line); }

.list-item .top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

/* ============================================================
   TABLES
============================================================ */
.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13.5px;
}

.table th {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-size: 10.5px;
  font-weight: 800;
  padding: 10px 10px 8px;
  border-bottom: 2px solid var(--line);
  text-align: left;
}

.table td {
  padding: 11px 10px;
  border-bottom: 1px solid var(--line-2);
  color: var(--ink-2);
  vertical-align: middle;
}

.table tbody tr:last-child td { border-bottom: none; }
.table tbody tr:hover td { background: var(--warm-2); }

.right { text-align: right; }

/* ============================================================
   CATEGORY VIZ (Progress bars)
============================================================ */
.category-viz {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 16px;
  background: var(--card-2);
  margin-bottom: 12px;
  display: grid;
  gap: 14px;
}

.category-viz-title {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  font-weight: 800;
}

.category-viz-row { display: grid; gap: 6px; }

.category-viz-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

.category-viz-track {
  height: 8px;
  background: var(--line-2);
  border-radius: 999px;
  overflow: hidden;
}

.category-viz-fill {
  height: 100%;
  border-radius: 999px;
  min-width: 3px;
  background: linear-gradient(90deg, var(--brand-2), var(--brand));
}

.category-viz-meta {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================================
   DAILY CHART
============================================================ */
.daily-chart {
  border: 1px solid var(--line-2);
  border-radius: var(--r-md);
  padding: 16px;
  display: grid;
  gap: 10px;
  background: var(--card-2);
}

.chart-bars {
  height: 180px;
  display: grid;
  align-items: end;
  gap: 3px;
}

.chart-bar {
  background: linear-gradient(180deg, var(--brand-2) 0%, var(--brand) 100%);
  border-radius: 5px 5px 0 0;
  min-height: 4px;
  animation: grow 0.5s var(--ease);
  transition: opacity 0.2s;
}
.chart-bar:hover { opacity: 0.8; }

.chart-bar.peak   { background: linear-gradient(180deg, #e8aa60 0%, #9a5020 100%); }
.chart-bar.high   { background: linear-gradient(180deg, #d49a6a 0%, #a86040 100%); }
.chart-bar.medium { background: linear-gradient(180deg, #d0a880 0%, #b07850 100%); }
.chart-bar.low    { background: linear-gradient(180deg, #d8b898 0%, #b89070 100%); }
.chart-bar.zero   { background: var(--line-2); }

.chart-labels { display: grid; gap: 4px; font-size: 11px; color: var(--muted); }

.chart-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  font-size: 11px;
  color: var(--muted);
  align-items: center;
}

.chart-legend span { display: inline-flex; align-items: center; gap: 6px; }

.chart-legend .swatch {
  width: 9px; height: 9px;
  border-radius: 999px;
  display: inline-block;
}

.chart-legend .swatch.peak   { background: #9a5020; }
.chart-legend .swatch.high   { background: #a86040; }
.chart-legend .swatch.medium { background: #b07850; }
.chart-legend .swatch.low    { background: #b89070; }
.chart-legend .swatch.zero   { background: var(--line); }

.chart-axis-x { display: grid; gap: 4px; margin-top: 2px; }
.chart-tick   { text-align: center; font-size: 10px; color: var(--muted); line-height: 1; }

/* ============================================================
   SECTION HEAD
============================================================ */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* ============================================================
   INSIGHTS
============================================================ */
.insights {
  margin: 10px 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.insights li {
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.55;
}

.empty {
  color: var(--muted);
  font-size: 14px;
  padding: 4px 0;
}

/* ============================================================
   MOM DELTA BADGES
============================================================ */
.mom-badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
  vertical-align: middle;
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.mom-up      { color: var(--ok);     background: #e2f5ec; }
.mom-down    { color: var(--danger); background: #fceeed; }
.mom-neutral { color: var(--muted);  background: var(--warm); }

/* ============================================================
   TAB NAVIGATION
============================================================ */
.tab-nav {
  display: flex;
  gap: 4px;
  margin-top: 18px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: var(--r-lg);
  padding: 5px;
  box-shadow: var(--shadow-sm);
}

.tab-btn {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.22s var(--ease);
  letter-spacing: 0.03em;
}

.tab-btn:hover {
  background: var(--warm-2);
  color: var(--ink-2);
}

.tab-btn.active {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-d) 100%);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(122,78,48,0.25);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* ============================================================
   PERIOD COMPARISON
============================================================ */
.compare-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}

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

/* ============================================================
   HISTORY FILTER BAR
============================================================ */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 14px;
  align-items: center;
}

.filter-bar input,
.filter-bar select {
  flex: 1;
  min-width: 140px;
  max-width: 260px;
}

/* ============================================================
   TOAST NOTIFICATIONS
============================================================ */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: var(--r-md);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 8px 32px rgba(20,10,5,0.22);
  opacity: 0;
  transform: translateY(12px) scale(0.96);
  transition: opacity 0.24s ease, transform 0.24s var(--ease);
  pointer-events: none;
  max-width: 340px;
  line-height: 1.4;
}

.toast.visible { opacity: 1; transform: translateY(0) scale(1); }
.toast-success { background: var(--ok);     color: #fff; }
.toast-error   { background: var(--danger); color: #fff; }
.toast-info    { background: var(--brand);  color: #fff; }
.toast-icon    { font-size: 16px; flex-shrink: 0; }

/* ============================================================
   ANIMATIONS
============================================================ */
@keyframes rise {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes grow {
  from { transform: scaleY(0); transform-origin: bottom; }
  to   { transform: scaleY(1); transform-origin: bottom; }
}

/* ============================================================
   RESPONSIVE — Tablet (≤980px)
============================================================ */
@media (max-width: 980px) {
  .hero, .layout    { grid-template-columns: 1fr; }
  .kpi-grid         { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compare-controls { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤580px)
============================================================ */
@media (max-width: 580px) {
  .wrap { padding: 14px 14px 40px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; padding: 22px 18px 18px; gap: 16px; }
  h1    { font-size: clamp(22px, 7vw, 32px); }
  h2    { font-size: 21px; }
  h3    { font-size: 17px; }

  /* Hero actions: 2-col grid */
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: center;
  }
  .hero-actions label:has(#monthFilter) { grid-column: 1 / -1; }
  #publishBtn   { grid-column: 1 / -1; font-size: 14px; padding: 11px; }
  #uploadStatus { grid-column: 1 / -1; font-size: 11px; }
  .hero-actions a.btn       { font-size: 12px; padding: 8px 6px; text-align: center; }
  .hero-actions .btn.ghost  { font-size: 12px; padding: 8px 6px; text-align: center; }

  /* KPI */
  .kpi-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .kpi .value { font-size: 22px; }

  /* Form */
  .form-grid        { grid-template-columns: 1fr; }
  .qualification-grid { grid-template-columns: 1fr; }

  /* Section head */
  .section-head          { flex-wrap: wrap; gap: 8px; }
  .section-head .btn     { width: 100%; justify-content: center; }

  /* Tables */
  .table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .table th, .table td { white-space: nowrap; }

  /* Tabs */
  .tab-nav  { gap: 3px; padding: 4px; border-radius: var(--r-md); }
  .tab-btn  { font-size: 12px; padding: 9px 4px; border-radius: var(--r-sm); }

  /* Filter */
  .filter-bar        { flex-direction: column; }
  .filter-bar input,
  .filter-bar select { max-width: 100%; min-width: 0; }

  /* Card */
  .card { padding: 16px 14px; border-radius: var(--r-md); }

  /* Toast */
  .toast-container { bottom: 16px; right: 12px; left: 12px; }
  .toast { max-width: 100%; font-size: 13px; }
}

@media (max-width: 400px) {
  .kpi-grid { grid-template-columns: 1fr; }
  h1        { font-size: 20px; }
  .tab-btn  { font-size: 11px; padding: 8px 3px; }
}

/* ============================================================
   VIEW-REPORT MODE (Boss / Read-only)
============================================================ */

/* Hide all destructive actions */
.view-report .btn.danger,
.view-report [onclick*="delete"],
.view-report [data-action="delete"] {
  display: none !important;
}

/* Published timestamp */
#publishedTs {
  font-size: 11px;
  opacity: 0.6;
  margin-top: 5px;
  letter-spacing: 0.03em;
}

/* Hero: always single column */
.view-report .hero {
  grid-template-columns: 1fr !important;
  padding: 26px 28px 22px;
  gap: 16px;
}

/* Hero actions: row layout */
.view-report .hero-actions {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
  flex-wrap: nowrap;
}
.view-report .hero-actions label:has(#monthFilter) {
  flex: 1;
  min-width: 0;
  display: grid;
  gap: 5px;
  font-size: 12px;
  color: rgba(255,225,195,0.8);
}
.view-report .hero-actions a.btn {
  white-space: nowrap;
  flex-shrink: 0;
  padding: 9px 14px;
  font-size: 13px;
}

/* Tab nav: 2 tabs — bigger */
.view-report .tab-btn { font-size: 15px; padding: 13px 12px; }

/* KPI: 2 columns always */
.view-report .kpi-grid {
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 12px;
}

/* Tables: scrollable */
.view-report .table {
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Mobile adjustments */
@media (max-width: 580px) {
  .view-report .wrap  { padding: 12px 12px 48px; }
  .view-report h1     { font-size: clamp(20px, 6vw, 26px); }
  .view-report h2     { font-size: 20px; }
  .view-report h3     { font-size: 16px; }
  .view-report .kpi .value { font-size: 20px; }
  .view-report .kpi .label { font-size: 10.5px; }
  .view-report .card  { padding: 14px 12px; }
  .view-report .table { font-size: 13px; }
  .view-report .insights { padding-left: 14px; font-size: 14px; }
  .view-report .table .mini { display: none; }
}
