:root {
  color-scheme: dark;
  --bg: #111412;
  --bg-2: #171b18;
  --panel: #1d241f;
  --panel-2: #222923;
  --ink: #d8dec8;
  --muted: #8c967f;
  --amber: #d3a343;
  --amber-2: #f0ce73;
  --green: #8aa66a;
  --green-2: #b8d58b;
  --red: #b85e57;
  --cyan: #7ea6a0;
  --line: #344033;
  --shadow: rgba(0, 0, 0, 0.35);
  --mono: "IBM Plex Mono", "Courier New", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 20% 10%, rgba(126, 166, 160, 0.09), transparent 28rem),
    radial-gradient(circle at 80% 20%, rgba(211, 163, 67, 0.08), transparent 30rem),
    linear-gradient(180deg, #111412 0%, #0d100e 100%);
  color: var(--ink);
  font-family: var(--sans);
  letter-spacing: 0;
}

button,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

button:disabled {
  cursor: wait;
}

.scanline {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 20;
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(255, 255, 255, 0.028),
      rgba(255, 255, 255, 0.028) 1px,
      transparent 1px,
      transparent 4px
    );
  mix-blend-mode: soft-light;
  opacity: 0.65;
}

.app-shell {
  min-height: 100vh;
  padding: 18px;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: end;
  max-width: 1440px;
  margin: 0 auto 14px;
  padding: 14px 0 6px;
  border-bottom: 1px solid var(--line);
}

.brand-kicker,
.section-kicker,
.choice-kicker,
.report-kicker {
  margin: 0 0 6px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 6px;
  color: #f1f3df;
  font-family: var(--mono);
  font-size: clamp(1.8rem, 4vw, 3.35rem);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.subtitle {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.45;
}

.run-status {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, auto));
  gap: 8px;
}

.briefing-shell {
  display: grid;
  place-items: center;
}

.briefing-screen {
  width: min(1120px, 100%);
  display: grid;
  gap: 18px;
}

.briefing-hero {
  min-height: 430px;
  display: grid;
  align-content: end;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 5vw, 52px);
  background:
    linear-gradient(180deg, rgba(10, 13, 11, 0.12), rgba(10, 13, 11, 0.82)),
    repeating-linear-gradient(90deg, rgba(211, 163, 67, 0.08) 0 1px, transparent 1px 22px),
    radial-gradient(circle at 76% 22%, rgba(211, 163, 67, 0.28), transparent 16rem),
    linear-gradient(135deg, #25312c, #111412 58%, #0b0d0c);
  box-shadow: 0 24px 70px var(--shadow);
  overflow: hidden;
  position: relative;
}

.briefing-hero::after {
  content: "CONTINUITY MANDATE";
  position: absolute;
  right: 22px;
  top: 22px;
  border: 1px solid rgba(240, 206, 115, 0.4);
  color: rgba(240, 206, 115, 0.58);
  padding: 8px 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  transform: rotate(2deg);
}

.briefing-copy {
  max-width: 680px;
  margin-bottom: 22px;
  color: #cdd5c1;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

.briefing-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.briefing-shortcut {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.78rem;
}

.briefing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.briefing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(29, 36, 31, 0.78);
  padding: 15px;
}

.briefing-card h2 {
  margin-bottom: 8px;
  color: var(--amber-2);
  font-family: var(--mono);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.briefing-card p {
  margin-bottom: 0;
  color: #b8c2ae;
  line-height: 1.45;
}

.status-cell {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(29, 36, 31, 0.72);
  padding: 10px 12px;
  box-shadow: 0 8px 24px var(--shadow);
}

.status-label {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.status-value {
  display: block;
  color: var(--amber-2);
  font-family: var(--mono);
  font-size: 0.96rem;
  font-weight: 700;
}

.game-grid {
  display: grid;
  grid-template-columns: minmax(230px, 0.78fr) minmax(360px, 1.45fr) minmax(230px, 0.78fr);
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
}

.panel,
.card-stage,
.choice-strip,
.ending-screen {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(29, 36, 31, 0.78);
  box-shadow: 0 18px 44px var(--shadow);
}

.panel {
  padding: 14px;
}

.panel-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.panel-header h2,
.card-copy h2 {
  margin: 0;
  color: #eef2db;
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
}

.small-note {
  margin: 0;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
}

.metric-list {
  display: grid;
  gap: 12px;
}

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

.metric-topline {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.8rem;
}

.metric-name {
  text-transform: uppercase;
}

.metric-value {
  color: var(--amber-2);
}

.bar-shell {
  height: 10px;
  overflow: hidden;
  border: 1px solid #42513f;
  border-radius: 3px;
  background: #0c100d;
}

.bar-fill {
  height: 100%;
  min-width: 2px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  transition: width 260ms ease;
}

.metric-row.danger .bar-fill,
.pressure-row.danger .bar-fill {
  background: linear-gradient(90deg, var(--red), #d39960);
}

.pressure-row .bar-fill {
  background: linear-gradient(90deg, #536d63, var(--red));
}

.pressure-row.obscured .metric-value,
.pressure-row.obscured .bar-shell {
  filter: blur(1.6px);
}

.pressure-row.redacted .metric-value {
  color: var(--red);
}

.pressure-row.redacted .bar-fill {
  background: repeating-linear-gradient(
    90deg,
    #8a3e3a 0,
    #8a3e3a 8px,
    #1b201d 8px,
    #1b201d 15px
  );
}

.card-stage {
  min-height: 610px;
  display: grid;
  grid-template-rows: auto minmax(220px, 1fr) auto auto;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(34, 41, 35, 0.94), rgba(17, 20, 18, 0.98)),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.02) 0, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 7px);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 13, 11, 0.46);
  font-family: var(--mono);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.mandate-chip {
  color: var(--amber-2);
}

.diorama {
  position: relative;
  isolation: isolate;
  min-height: 260px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(11, 14, 13, 0.18), rgba(0, 0, 0, 0.45)),
    var(--art-bg, linear-gradient(135deg, #27332f, #111412));
  overflow: hidden;
}

.diorama::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, transparent 0 64%, rgba(0, 0, 0, 0.42) 64% 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 2px, transparent 2px 8px);
  mix-blend-mode: screen;
  opacity: 0.6;
}

.diorama::after {
  content: "";
  position: absolute;
  inset: 15% 9% 18%;
  z-index: 2;
  border: 2px solid rgba(240, 206, 115, 0.28);
  box-shadow: inset 0 0 0 6px rgba(0, 0, 0, 0.12), 0 18px 40px rgba(0, 0, 0, 0.28);
}

.pixel-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
}

.pixel {
  position: absolute;
  display: block;
  background: var(--pixel-color, #d3a343);
  image-rendering: pixelated;
  box-shadow: 0 0 18px rgba(211, 163, 67, 0.2);
}

.px-building-a {
  left: 13%;
  bottom: 18%;
  width: 12%;
  height: 42%;
  background: #263129;
}

.px-building-b {
  left: 28%;
  bottom: 18%;
  width: 18%;
  height: 55%;
  background: #303c34;
}

.px-building-c {
  right: 16%;
  bottom: 18%;
  width: 17%;
  height: 47%;
  background: #202923;
}

.px-line {
  left: 0;
  bottom: 36%;
  width: 100%;
  height: 3px;
  background: rgba(240, 206, 115, 0.45);
  animation: flicker 1.8s infinite steps(2);
}

.px-sun {
  right: 22%;
  top: 17%;
  width: 9%;
  aspect-ratio: 1;
  border-radius: 2px;
  background: rgba(211, 163, 67, 0.7);
  filter: blur(0.2px);
}

.px-ground {
  left: 0;
  right: 0;
  bottom: 0;
  height: 18%;
  background:
    repeating-linear-gradient(90deg, #20261f 0 18px, #161b17 18px 34px);
}

.px-object-a,
.px-object-b,
.px-object-c {
  background: var(--pixel-color, #d3a343);
}

.px-object-a {
  left: 51%;
  bottom: 24%;
  width: 12%;
  height: 9%;
}

.px-object-b {
  left: 59%;
  bottom: 33%;
  width: 4%;
  height: 22%;
}

.px-object-c {
  right: 28%;
  bottom: 18%;
  width: 3%;
  height: 34%;
  opacity: 0.7;
}

.scene-stamp {
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 6;
  border: 1px solid rgba(240, 206, 115, 0.36);
  background: rgba(10, 13, 11, 0.48);
  color: rgba(240, 206, 115, 0.76);
  padding: 6px 8px;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.scene-breadRiots .px-object-a,
.scene-borderRefugees .px-object-a {
  left: 44%;
  bottom: 18%;
  width: 31%;
  height: 5%;
}

.scene-breadRiots .px-object-b,
.scene-borderRefugees .px-object-b {
  left: 47%;
  bottom: 23%;
  width: 5%;
  height: 15%;
  box-shadow:
    34px 6px 0 rgba(211, 163, 67, 0.72),
    72px 0 0 rgba(211, 163, 67, 0.54),
    108px 8px 0 rgba(211, 163, 67, 0.5);
}

.scene-soilExhaustion .px-ground,
.scene-falseHarvestReports .px-ground {
  background: repeating-linear-gradient(90deg, #2c261d 0 22px, #15150f 22px 38px);
}

.scene-soilExhaustion .px-object-a,
.scene-falseHarvestReports .px-object-a {
  left: 47%;
  bottom: 20%;
  width: 24%;
  height: 20%;
  background: rgba(138, 166, 106, 0.52);
}

.scene-whistleblowerLeak .px-object-a,
.scene-archiveFires .px-object-a {
  left: 53%;
  bottom: 22%;
  width: 18%;
  height: 40%;
  background: repeating-linear-gradient(180deg, #263129 0 12px, var(--pixel-color) 12px 14px);
}

.scene-archiveFires .px-object-b {
  left: 57%;
  bottom: 61%;
  width: 10%;
  height: 10%;
  background: #c56f45;
  animation: flicker 900ms infinite steps(2);
}

.scene-algorithmicPanic .px-line {
  bottom: 48%;
  height: 2px;
  box-shadow: 0 22px 0 rgba(126, 166, 160, 0.38), 0 -22px 0 rgba(126, 166, 160, 0.35);
}

.scene-charismaticDemagogue .px-object-a {
  left: 52%;
  bottom: 20%;
  width: 18%;
  height: 12%;
}

.scene-charismaticDemagogue .px-object-b {
  left: 58%;
  bottom: 32%;
  width: 4%;
  height: 34%;
}

.scene-infrastructureDecay .px-object-a {
  left: 38%;
  bottom: 35%;
  width: 42%;
  height: 6%;
  transform: rotate(-6deg);
}

.scene-infrastructureDecay .px-object-b {
  left: 60%;
  bottom: 26%;
  width: 5%;
  height: 22%;
  transform: rotate(13deg);
}

.scene-despairEpidemic .px-line {
  opacity: 0.22;
  animation-duration: 3.2s;
}

.scene-despairEpidemic .px-object-a {
  left: 50%;
  bottom: 54%;
  width: 4%;
  height: 4%;
  opacity: 0.3;
  box-shadow:
    28px 18px 0 rgba(240, 206, 115, 0.28),
    62px 4px 0 rgba(240, 206, 115, 0.2),
    104px 26px 0 rgba(240, 206, 115, 0.16);
}

.scene-militaryDefection .px-object-a {
  left: 51%;
  bottom: 24%;
  width: 22%;
  height: 6%;
}

.scene-militaryDefection .px-object-b {
  left: 54%;
  bottom: 31%;
  width: 2%;
  height: 36%;
}

.scene-militaryDefection .px-object-c {
  left: 56%;
  bottom: 56%;
  width: 16%;
  height: 9%;
  transform: skewY(-10deg);
}

.card-copy {
  padding: 18px 18px 14px;
}

.card-copy h2 {
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.crisis-text {
  margin: 0;
  color: #cbd3bd;
  line-height: 1.55;
}

.report-panel {
  margin: 0 18px 18px;
  padding: 12px 13px;
  border: 1px solid rgba(211, 163, 67, 0.3);
  border-radius: 6px;
  background: rgba(10, 13, 11, 0.42);
}

.report-panel p {
  margin-bottom: 0;
  color: #d9dbca;
  line-height: 1.45;
}

.momentum-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.momentum-chip {
  border: 1px solid rgba(126, 166, 160, 0.38);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.68rem;
}

.side-module {
  margin-top: 16px;
  border-top: 1px solid rgba(52, 64, 51, 0.78);
  padding-top: 12px;
}

.side-module h3 {
  margin: 0 0 8px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
}

.side-module p,
.side-module li {
  margin: 0;
  color: #abb6a2;
  font-size: 0.8rem;
  line-height: 1.38;
}

.side-module p + p {
  margin-top: 5px;
}

.side-module ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 16px;
}

.threat-module {
  display: grid;
  gap: 10px;
}

.threat-row {
  border: 1px solid rgba(52, 64, 51, 0.8);
  border-radius: 6px;
  padding: 8px;
  background: rgba(10, 13, 11, 0.25);
}

.threat-topline {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 7px;
  align-items: baseline;
  margin-bottom: 4px;
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.threat-topline span {
  color: var(--muted);
}

.threat-topline strong {
  color: #e3e7cf;
  font-size: 0.72rem;
}

.threat-topline em {
  color: var(--red);
  font-style: normal;
}

.warning-module li {
  color: #d5c199;
}

.delta-ledger {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.delta-chip {
  border: 1px solid rgba(52, 64, 51, 0.9);
  border-radius: 999px;
  padding: 4px 7px;
  font-family: var(--mono);
  font-size: 0.68rem;
}

.delta-chip.gain {
  color: var(--green-2);
}

.delta-chip.loss {
  color: #e09a80;
}

.choice-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  padding: 12px;
  background: rgba(17, 20, 18, 0.84);
}

.choice-button {
  min-height: 210px;
  border: 1px solid #3b4739;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(34, 41, 35, 0.96), rgba(24, 30, 25, 0.96));
  color: var(--ink);
  padding: 14px;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.choice-button:hover,
.choice-button:focus-visible {
  border-color: rgba(240, 206, 115, 0.72);
  background:
    linear-gradient(180deg, rgba(41, 49, 42, 0.98), rgba(25, 31, 26, 0.98));
  outline: none;
  transform: translateY(-2px);
}

.choice-button h3 {
  margin-bottom: 8px;
  color: #f0f2dc;
  font-family: var(--mono);
  font-size: 1rem;
  text-transform: uppercase;
}

.choice-button p {
  margin-bottom: 12px;
  color: #aeb9a2;
  font-size: 0.92rem;
  line-height: 1.38;
}

.choice-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.choice-meta span,
.choice-warnings span {
  border: 1px solid rgba(126, 166, 160, 0.26);
  border-radius: 999px;
  padding: 4px 7px;
  color: var(--cyan);
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
}

.preview-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.preview-list li {
  color: #d4cfad;
  font-family: var(--mono);
  font-size: 0.76rem;
}

.preview-list li.hidden-effect {
  color: #b89179;
}

.preview-list li.unreliable {
  color: #e0bd64;
}

.choice-warnings {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.choice-warnings span {
  border-color: rgba(184, 94, 87, 0.38);
  color: #d9a08e;
}

.ending-screen {
  max-width: 1100px;
  margin: 26px auto;
  padding: 22px;
}

.ending-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.ending-title {
  margin-bottom: 8px;
  color: #f3f0d7;
  font-family: var(--mono);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.ending-cause {
  margin-bottom: 20px;
  color: var(--amber-2);
  font-family: var(--mono);
  text-transform: uppercase;
}

.report-block {
  border-top: 1px solid var(--line);
  padding: 14px 0 0;
}

.report-block h3 {
  margin-bottom: 6px;
  color: var(--amber);
  font-family: var(--mono);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.report-block p {
  color: #d5dac8;
  line-height: 1.5;
}

.final-line {
  color: #f0ce73;
  font-family: var(--mono);
  font-size: 1.1rem;
}

.score-grid {
  display: grid;
  gap: 10px;
}

.score-card {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  background: rgba(10, 13, 11, 0.36);
}

.score-card span {
  display: block;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.score-card strong {
  display: block;
  color: var(--amber-2);
  font-family: var(--mono);
  font-size: 1.8rem;
}

.history-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.history-list li {
  border-left: 2px solid rgba(211, 163, 67, 0.45);
  padding-left: 10px;
  color: #bac2ad;
  font-size: 0.86rem;
  line-height: 1.35;
}

.share-report {
  width: 100%;
  min-height: 168px;
  margin-top: 10px;
  border: 1px solid #3b4739;
  border-radius: 6px;
  background: rgba(10, 13, 11, 0.58);
  color: #dce1cc;
  padding: 10px;
  font-family: var(--mono);
  font-size: 0.76rem;
  line-height: 1.45;
  resize: vertical;
}

.share-report:focus {
  border-color: rgba(240, 206, 115, 0.72);
  outline: none;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.primary-button,
.secondary-button {
  border: 1px solid rgba(240, 206, 115, 0.58);
  border-radius: 6px;
  padding: 10px 14px;
  font-family: var(--mono);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.primary-button {
  background: var(--amber);
  color: #111412;
  font-weight: 800;
}

.secondary-button {
  background: transparent;
  color: var(--amber-2);
}

.copy-status {
  min-height: 1.2em;
  margin-top: 10px;
  color: var(--green-2);
  font-family: var(--mono);
  font-size: 0.78rem;
}

body[data-decay-tier="3"] .card-stage,
body[data-decay-tier="4"] .card-stage {
  animation: lowGlitch 2.8s infinite steps(2);
}

body[data-decay-tier="4"] .metric-row:nth-child(2n) .metric-name,
body[data-decay-tier="4"] .crisis-text {
  text-shadow: 1px 0 var(--red), -1px 0 var(--cyan);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@keyframes flicker {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.95; }
}

@keyframes lowGlitch {
  0%, 94%, 100% { transform: translate(0, 0); filter: none; }
  95% { transform: translate(1px, 0); filter: hue-rotate(8deg); }
  97% { transform: translate(-1px, 0); }
}

@media (max-width: 1060px) {
  .topbar,
  .game-grid {
    max-width: 760px;
  }

  .topbar {
    grid-template-columns: 1fr;
  }

  .briefing-grid {
    grid-template-columns: 1fr;
  }

  .game-grid {
    grid-template-columns: 1fr;
  }

  .choice-strip {
    grid-template-columns: 1fr;
  }

  .card-stage {
    min-height: 520px;
  }

  .ending-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .app-shell {
    padding: 10px;
  }

  .run-status {
    grid-template-columns: 1fr;
  }

  .panel {
    padding: 12px;
  }

  .card-copy {
    padding: 14px;
  }

  .report-panel {
    margin: 0 14px 14px;
  }

  .choice-button {
    min-height: auto;
  }
}
