@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --ink: #171717;
  --muted: #747b8d;
  --line: #e4e7ec;
  --soft: #f5f6f8;
  --paper-warm: #fffaf2;
  --teal-soft: #f4fbf9;
  --gold-soft: #fbf6e8;
  --coral-soft: #fff5f1;
  --teal-line: rgba(36, 124, 114, 0.18);
  --gold-line: rgba(200, 148, 50, 0.2);
  --coral-line: rgba(197, 109, 85, 0.18);
  --selected: #eef2ff;
  --selected-hover: #f6f8ff;
  --green-bg: #effdf5;
  --green: #159447;
  --red-bg: #fff4f4;
  --red: #b42318;
  --focus: #4f46e5;
  --success-line: #2f6f73;
  --font-system-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue",
    Arial, sans-serif;
  color-scheme: light;
  font-family: "Space Grotesk", var(--font-system-sans);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.45;
}

button,
select {
  font: inherit;
}

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

.domain-control {
  position: relative;
  display: flex;
  align-items: center;
}

.filter-label,
.eyebrow,
.environment-card span {
  color: var(--muted);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.domain-menu {
  position: relative;
}

.domain-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 340px;
  height: 56px;
  padding: 0 18px 0 22px;
  border: 1px solid #d9dde5;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 1px 1px rgba(17, 24, 39, 0.03);
  color: #202637;
  font-size: 22px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.domain-menu-button:hover,
.domain-menu-button[aria-expanded="true"] {
  border-color: #c7ccd6;
  background: #fbfcfd;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.domain-chevron {
  width: 11px;
  height: 11px;
  margin-left: auto;
  border-right: 3px solid #687083;
  border-bottom: 3px solid #687083;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 160ms ease;
}

.domain-menu-button[aria-expanded="true"] .domain-chevron {
  transform: translateY(3px) rotate(225deg);
}

.domain-menu-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  z-index: 20;
  width: min(330px, calc(100vw - 48px));
  padding: 5px 12px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12), 0 2px 8px rgba(17, 24, 39, 0.05);
}

.domain-option {
  display: grid;
  width: 100%;
  gap: 3px;
  padding: 11px 0;
  border: 0;
  border-top: 1px solid #e5e8ee;
  background: transparent;
  color: #4a5568;
  text-align: left;
  cursor: pointer;
}

.domain-option:first-child {
  border-top: 0;
}

.domain-option:hover .domain-option-title,
.domain-option.active .domain-option-title {
  color: #202637;
}

.domain-option:hover .domain-option-description,
.domain-option.active .domain-option-description {
  color: #798294;
}

.domain-option-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.domain-option-description {
  color: #99a1b0;
  font-size: 12px;
  line-height: 1.28;
}

.domain-menu-button:focus-visible,
.domain-option:focus-visible,
.trajectory-example-button:focus-visible,
.model-chip:focus-visible,
.tab:focus-visible {
  outline: 3px solid rgba(79, 70, 229, 0.28);
  outline-offset: 2px;
}

.viewer-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
  padding: 24px 32px 64px;
}

.eyebrow {
  margin-bottom: 6px;
}

.provider-mark {
  display: inline-grid;
  place-items: center;
  min-width: 20px;
  height: 20px;
  color: #111827;
  font-size: 11px;
  font-weight: 800;
}

h1 {
  margin-bottom: 0;
  color: #202637;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.15;
}

h2 {
  margin-bottom: 0;
  color: #202637;
  font-size: 28px;
  font-weight: 650;
  line-height: 1.12;
}

.model-strip-section {
  min-width: 0;
}

.model-strip {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.model-chip {
  width: 158px;
  min-width: 0;
  padding: 12px 13px 13px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: background 160ms ease, transform 160ms ease;
}

.model-chip:hover {
  background: var(--selected-hover);
}

.model-chip.active {
  background: var(--selected);
}

.model-chip:active {
  transform: translateY(1px);
}

.model-chip-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 7px;
  margin-bottom: 8px;
}

.model-chip strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chip-score {
  color: var(--muted);
  font-size: 12px;
  line-height: 1;
}

.model-track {
  display: block;
  overflow: hidden;
  height: 3px;
  border-radius: 999px;
  background: #edf0f3;
  box-shadow: none;
}

.model-track span {
  display: block;
  height: 100%;
  min-width: 2px;
  border-radius: inherit;
  background: var(--success-line);
}

.sample-section {
  padding-top: 18px;
}

.sample-controls {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.sample-controls-left {
  min-width: 0;
}

.sample-header {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 0;
}

.tab-list {
  display: inline-flex;
  gap: 5px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.tab {
  min-width: 98px;
  padding: 10px 15px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  color: #171717;
  font-size: 16px;
  cursor: pointer;
}

.tab.active {
  background: var(--soft);
  font-weight: 600;
}

.tab-content {
  padding-top: 24px;
  min-height: 360px;
}

.task-card,
.trajectory-card,
.content-panel {
  width: 100%;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.06);
  border-radius: 8px;
  background: var(--soft);
  color: #171717;
  font-size: 15px;
  line-height: 1.42;
}

.task-panel {
  border-color: var(--gold-line);
  background: var(--paper-warm);
}

.task-list {
  display: grid;
  gap: 30px;
}

.task-sequence-section {
  display: grid;
  gap: 10px;
}

.task-sequence-section + .task-sequence-section {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.task-example {
  display: block;
}

.task-example-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 -2px;
}

.task-example-index {
  color: #384152;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.task-example-title {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.task-example-actions {
  display: none;
}

.task-select {
  padding: 8px 11px;
  border: 1px solid rgba(200, 148, 50, 0.26);
  border-radius: 7px;
  background: #fff;
  color: #59410f;
  font-size: 13px;
  font-weight: 650;
  cursor: pointer;
}

.task-select:hover,
.task-select.active {
  background: #fff4d9;
}

.environment-panel {
  border-color: var(--teal-line);
  background: var(--teal-soft);
}

.challenge-panel {
  border-color: var(--coral-line);
  background: var(--coral-soft);
}

.filesystem-panel {
  border-color: rgba(23, 23, 23, 0.08);
  background: #fbfcfd;
}

.resource-panel {
  border-color: rgba(23, 23, 23, 0.08);
  background: #fffdf9;
}

.trajectory-card {
  border: 1px solid rgba(23, 23, 23, 0.07);
  background: #fbfcfd;
}

.task-card p,
.panel-body p {
  margin-bottom: 12px;
}

.task-question-text {
  margin: 0;
  white-space: pre-line;
}

.task-card p:last-child,
.panel-body p:last-child {
  margin-bottom: 0;
}

.environment-flow {
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
}

.environment-panel {
  grid-column: 1;
  grid-row: 1;
}

.challenge-panel {
  grid-column: 1;
  grid-row: 2;
}

.filesystem-panel {
  grid-column: 1;
  grid-row: 3;
}

.resource-panel {
  grid-column: 2;
  grid-row: 1 / span 3;
  align-self: stretch;
}

.panel-title {
  margin: 0 0 10px;
  color: #384152;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.panel-body p {
  color: #232323;
}

.section-title {
  margin: 16px 0 -2px;
  font-size: 16px;
  font-weight: 700;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.resource-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.resource-media {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 0.48;
  padding: 4px;
  background: #fff;
}

.resource-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.resource-media.placeholder {
  background: #f4f6f8;
  color: #727b8b;
}

.resource-media.placeholder span {
  display: inline-grid;
  place-items: center;
  min-width: 30px;
  height: 26px;
  padding: 0 6px;
  border: 1px solid #d8dce4;
  border-radius: 8px;
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.resource-body {
  min-height: 58px;
  padding: 7px 8px;
  border-top: 1px solid var(--line);
  background: #fafafa;
}

.resource-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
}

.resource-body p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.filesystem-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.filesystem-dropdown {
  display: block;
}

.filesystem-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  list-style: none;
}

.filesystem-header::-webkit-details-marker {
  display: none;
}

.filesystem-header::after {
  content: "";
  width: 9px;
  height: 9px;
  margin-left: 4px;
  border-right: 2px solid #687083;
  border-bottom: 2px solid #687083;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.filesystem-dropdown[open] .filesystem-header::after {
  transform: translateY(3px) rotate(225deg);
}

.filesystem-header strong {
  font-size: 14px;
}

.filesystem-header span {
  color: #5b5ef7;
  font-size: 13px;
}

.filesystem-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.82fr);
  gap: 18px;
  padding: 14px;
}

.filesystem-tree-panel,
.filesystem-used-panel {
  min-width: 0;
}

.filesystem-tree-panel h4,
.filesystem-used-panel h4 {
  margin: 0 0 10px;
  color: #384152;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.file-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.file-type-card {
  min-width: 0;
  padding: 10px 11px;
  border: 1px solid #e1e5ec;
  border-radius: 8px;
  background: #fbfcfd;
}

.file-type-card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.file-type-card-top strong {
  min-width: 0;
  overflow: hidden;
  color: #202637;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-example-list {
  display: grid;
  gap: 3px;
  margin-top: 7px;
}

.file-example-list .file-link,
.used-file-main .file-link {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}

.used-file-list {
  display: grid;
  gap: 6px;
}

.used-file-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px;
  min-width: 0;
  min-height: 30px;
  padding: 6px 0;
  border-bottom: 1px solid #edf0f4;
}

.used-file-row:last-child {
  border-bottom: 0;
}

.used-file-main {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
}

.slack-logo {
  position: relative;
  display: inline-grid;
  grid-template-columns: repeat(2, 5px);
  grid-template-rows: repeat(2, 5px);
  flex: 0 0 auto;
  gap: 2px;
  width: 12px;
  height: 12px;
}

.slack-logo span {
  border-radius: 2px;
}

.slack-logo span:nth-child(1) {
  background: #36c5f0;
}

.slack-logo span:nth-child(2) {
  background: #2eb67d;
}

.slack-logo span:nth-child(3) {
  background: #ecb22e;
}

.slack-logo span:nth-child(4) {
  background: #e01e5a;
}

.file-tree {
  display: grid;
  gap: 2px;
  padding: 10px 14px 12px;
}

.compact-file-tree {
  max-height: 520px;
  overflow: auto;
}

.file-row {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 25px;
  min-width: 0;
  color: #384152;
  font-size: 13px;
}

.file-row-more {
  color: #737b8c;
  font-style: italic;
}

.file-row.depth-1 {
  margin-left: 26px;
}

.file-row.depth-2 {
  margin-left: 52px;
}

.file-row.depth-3 {
  margin-left: 78px;
}

.file-row.depth-4 {
  margin-left: 104px;
}

.file-row.depth-5 {
  margin-left: 130px;
}

.file-row.depth-6 {
  margin-left: 156px;
}

.file-row.depth-7 {
  margin-left: 182px;
}

.file-type {
  display: inline-grid;
  place-items: center;
  min-width: 38px;
  height: 20px;
  padding: 0 6px;
  border: 1px solid #d8dce4;
  border-radius: 999px;
  background: #f8fafc;
  color: #697386;
  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.file-name {
  min-width: 0;
  overflow: hidden;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-type.root {
  border-color: rgba(36, 124, 114, 0.22);
  background: var(--teal-soft);
  color: #247c72;
}

.chevron {
  color: #737b8c;
  font-size: 17px;
  line-height: 1;
}

.folder-icon {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 13px;
  border: 1.5px solid #727b8b;
  border-radius: 3px;
}

.folder-icon::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 1px;
  width: 8px;
  height: 4px;
  border: 1.5px solid #727b8b;
  border-bottom: 0;
  border-radius: 3px 3px 0 0;
  background: #fff;
}

.file-count {
  color: var(--muted);
}

.criterion-section {
  margin-top: 0;
  padding: 18px 20px;
  border: 1px solid rgba(23, 23, 23, 0.07);
  border-radius: 8px;
  background: #fbfcfd;
}

.criterion-heading {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.criterion-list {
  --criterion-columns: minmax(220px, 1.05fr) minmax(0, 0.85fr) minmax(0, 0.95fr) 104px;
  display: grid;
  gap: 8px;
}

.criterion-row {
  display: grid;
  grid-template-columns: var(--criterion-columns);
  justify-items: start;
  gap: 7px 20px;
  align-items: start;
  padding: 15px 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #202637;
  font-size: 14px;
  line-height: 1.35;
}

.criterion-header {
  align-items: end;
  justify-items: start;
  padding: 0 24px 6px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.criterion-name {
  display: grid;
  gap: 4px;
  min-width: 0;
  font-weight: 650;
}

.criterion-value {
  justify-self: start;
  min-width: 0;
  max-width: 100%;
  color: #202637;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.25;
  overflow-wrap: anywhere;
  word-break: normal;
  text-align: left;
}

.file-link {
  color: #1f6d63;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.file-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 5px;
}

.file-link:hover {
  color: #164f49;
}

.criterion-row strong {
  align-self: center;
  justify-self: end;
  min-width: 76px;
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.criterion-row.pass strong {
  color: var(--green);
}

.criterion-row.pass strong::before {
  content: "✓ ";
}

.criterion-row.fail strong {
  color: var(--red);
}

.criterion-row.fail strong::before {
  content: "× ";
}

.criterion-row.partial strong {
  color: #9a6b12;
}

.criterion-row.partial strong::before {
  content: "◐ ";
}

.criterion-row.pending strong {
  color: #6d7280;
}

.criterion-row.pending strong::before {
  content: "";
}

.trajectory-example-control {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.trajectory-example-label {
  color: #697386;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trajectory-example-menu {
  position: relative;
}

.trajectory-example-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  height: 42px;
  padding: 0 14px 0 16px;
  border: 1px solid #d9dde5;
  border-radius: 10px;
  background: #fff;
  color: #202637;
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.trajectory-example-button:hover,
.trajectory-example-button[aria-expanded="true"] {
  border-color: #c7ccd6;
  background: #fbfcfd;
  box-shadow: 0 2px 8px rgba(17, 24, 39, 0.06);
}

.trajectory-example-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: min(330px, calc(100vw - 48px));
  padding: 5px 12px;
  border: 1px solid #dfe3ea;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 16px 36px rgba(17, 24, 39, 0.12), 0 2px 8px rgba(17, 24, 39, 0.05);
}

.trajectory-example-button[aria-expanded="true"] .domain-chevron {
  transform: translateY(3px) rotate(225deg);
}


.trajectory-list {
  display: grid;
  gap: 20px;
}

.trajectory-block {
  min-width: 0;
}

.raw-prompt-block,
.run-summary {
  margin-bottom: 22px;
}

.trajectory-label {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 8px;
  color: #a4adba;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.trajectory-symbol {
  color: #aab2bf;
  font-weight: 800;
}

.trajectory-box {
  overflow: auto;
  max-height: 390px;
  margin: 0;
  padding: 16px 18px;
  border: 1px solid #dfe3ea;
  border-radius: 8px;
  background: #fbfcfd;
  color: #202637;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  font-size: 13px;
  line-height: 1.48;
  white-space: pre-wrap;
}

.raw-prompt-block .trajectory-box {
  max-height: 360px;
}

.run-summary .trajectory-box {
  background: #fff;
}

.trajectory-message {
  max-width: 1180px;
  margin: 0;
  color: #384152;
  font-size: 15px;
  line-height: 1.55;
}

.trajectory-verifier .trajectory-message {
  color: #a95540;
}

.trajectory-final .trajectory-message {
  color: #257244;
}

@media (max-width: 980px) {
  .viewer-shell {
    padding: 28px 20px 52px;
  }

  .sample-controls {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .model-strip {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x proximity;
  }

  .model-chip {
    flex: 0 0 166px;
    scroll-snap-align: start;
  }

  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .domain-control {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .filter-label {
    font-size: 12px;
  }

  .domain-menu,
  .domain-menu-button {
    width: 100%;
    min-width: 0;
  }

  .domain-menu-button {
    height: 46px;
    padding: 0 14px 0 16px;
    font-size: 17px;
  }

  .domain-menu-panel {
    width: 100%;
  }

  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 24px;
  }

  .sample-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .tab-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
  }

  .tab {
    min-width: 0;
    padding: 10px 8px;
    font-size: 16px;
  }

  .task-card,
  .trajectory-card,
  .content-panel {
    padding: 18px 16px;
    font-size: 15px;
  }

  .environment-flow,
  .environment-panel,
  .challenge-panel,
  .filesystem-panel,
  .resource-panel {
    display: block;
  }

  .environment-panel,
  .challenge-panel,
  .filesystem-panel,
  .resource-panel {
    margin-bottom: 16px;
  }

  .resource-panel {
    margin-bottom: 0;
  }

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

  .filesystem-overview,
  .file-type-grid {
    grid-template-columns: 1fr;
  }

  .used-file-row {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .used-file-row .file-count {
    grid-column: 2;
  }

  .criterion-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 15px 16px;
    font-size: 15px;
  }

  .criterion-header {
    display: none;
  }

  .criterion-row strong {
    justify-self: start;
  }
}
