:root {
  --desktop-teal: #008080;
  --window-face: #c0c0c0;
  --window-face-strong: #c0c0c0;
  --window-face-soft: #d4d0c8;
  --window-line: #808080;
  --window-line-strong: #000000;
  --window-highlight: #ffffff;
  --window-shadow: #808080;
  --window-shadow-deep: #404040;
  --window-ink: #000000;
  --window-ink-soft: #303030;
  --title-active: #000080;
  --title-active-text: #ffffff;
  --button-face: #c0c0c0;
  --button-face-active: #b8b4ac;
  --field-face: #ffffff;
  --field-shadow: #808080;
  --field-highlight: #ffffff;
  --danger: #800000;
  --success: #008000;
  --radius-tight: 0;
  --title-font: "MS Sans Serif", "Tahoma", "Malgun Gothic", sans-serif;
  --ui-font: "MS Sans Serif", "Tahoma", "Malgun Gothic", sans-serif;
  --mono-font: "Consolas", "Courier New", monospace;
  --bevel-raised:
    inset 1px 1px 0 #ffffff,
    inset 2px 2px 0 #dfdfdf,
    inset -1px -1px 0 #808080,
    inset -2px -2px 0 #000000;
  --bevel-inset:
    inset 1px 1px 0 #808080,
    inset 2px 2px 0 #000000,
    inset -1px -1px 0 #ffffff,
    inset -2px -2px 0 #dfdfdf;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--window-ink);
  font-family: var(--ui-font);
  font-size: 12px;
  line-height: 1.25;
  background: var(--desktop-teal);
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.retro-window {
  max-width: 1460px;
  margin: 0 auto;
  border: 1px solid var(--window-line-strong);
  background: var(--window-face);
  box-shadow: var(--bevel-raised);
}

.title-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 26px;
  padding: 3px 4px 3px 3px;
  color: var(--title-active-text);
  background: var(--title-active);
  border-bottom: 1px solid var(--window-line-strong);
  user-select: none;
}

.title-bar-copy {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.title-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.title-bar-icon img {
  display: block;
  width: auto;
  height: 18px;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
}

.title-text {
  display: block;
  min-width: 0;
}

.title-text strong,
.title-text span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.title-text strong {
  display: block;
  font: 700 1rem/1 var(--title-font);
}

.title-text span {
  display: none;
}

.window-controls {
  display: inline-flex;
  gap: 2px;
  margin-left: 8px;
  flex: 0 0 auto;
}

.window-control {
  width: 18px;
  min-height: 16px;
  padding: 0;
  color: #000000;
  border: 1px solid var(--window-line-strong);
  background: var(--button-face);
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
  font: 700 11px/1 var(--title-font);
  user-select: none;
}

.window-control:active {
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
  padding: 1px 0 0 1px;
}

.menu-bar {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 2px 6px 3px;
  border-top: 1px solid #dfdfdf;
  border-bottom: 1px solid var(--window-line);
  background: var(--window-face);
  user-select: none;
}

.menu-bar-item,
.menu-bar-note {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  padding: 1px 7px;
  color: var(--window-ink);
  font-size: 1rem;
  line-height: 1;
  text-decoration: none;
  cursor: default;
}

a.menu-bar-item {
  cursor: pointer;
}

.menu-bar-item:hover,
.menu-bar-item:focus-visible {
  outline: 1px dotted #000000;
  outline-offset: -3px;
}

.menu-bar-spacer {
  flex: 1;
}

.menu-bar-note {
  padding-right: 0;
  color: var(--window-ink-soft);
}

.site-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border-top: 1px solid var(--window-highlight);
  border-bottom: 1px solid var(--window-line);
  background: #bdb8ae;
}

.site-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 10px;
  color: var(--window-ink);
  border: 1px solid var(--window-line-strong);
  background: var(--button-face);
  text-decoration: none;
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.site-link-button:hover {
  color: var(--window-ink);
}

.site-link-button:active {
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
  background: var(--button-face-active);
}

.site-link-button.is-current,
.site-link-button[aria-current="page"] {
  color: var(--title-active-text);
  background: var(--title-active);
  box-shadow:
    inset 1px 1px 0 #4d4d9d,
    inset -1px -1px 0 #00004a;
}

.lang-toggle {
  display: inline-flex;
  padding: 2px;
  border: 1px solid var(--window-line-strong);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
}

.lang-button {
  min-height: 20px;
  padding: 0 8px;
  color: var(--window-ink);
  border: 0;
  background: transparent;
  text-transform: lowercase;
}

.lang-button.is-active {
  color: var(--window-ink);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
}

.menu-row,
.box-head,
.head-top,
.head-meta,
.editor-head-actions,
.quick-actions,
.json-toolbar,
.tab-bar,
.collection-toolbar,
.field-label-row,
.field-inline,
.field-inline-readonly {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.menu-row {
  align-items: center;
  padding: 6px;
  border-top: 1px solid var(--window-highlight);
  border-bottom: 1px solid var(--window-line);
  background: var(--window-face);
  user-select: none;
}

.toolbar-row {
  gap: 6px;
}

.menu-spacer {
  flex: 1;
}

.menu-button,
.tab-button,
.mini-button,
.ghost-button,
.primary-button,
.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  padding: 0 10px;
  color: var(--window-ink);
  border: 1px solid var(--window-line-strong);
  border-radius: 0;
  background: var(--button-face);
  text-decoration: none;
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.menu-button:hover,
.tab-button:hover,
.mini-button:hover,
.ghost-button:hover,
.primary-button:hover,
.danger-button:hover {
  color: var(--window-ink);
}

.menu-button:active,
.tab-button:active,
.mini-button:active,
.ghost-button:active,
.primary-button:active,
.danger-button:active {
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
  background: var(--button-face-active);
}

.menu-button[disabled],
.tab-button[disabled],
.mini-button[disabled],
.ghost-button[disabled],
.primary-button[disabled],
.danger-button[disabled] {
  cursor: default;
  opacity: 1;
  color: var(--window-line);
  text-shadow: 1px 1px 0 var(--window-highlight);
}

.menu-button-primary,
.primary-button,
.tab-button.is-active {
  background: var(--button-face);
}

.danger-button {
  color: var(--danger);
}

.workspace {
  display: grid;
  grid-template-columns: minmax(290px, 340px) minmax(0, 1fr);
  gap: 10px;
  padding: 10px;
  align-items: start;
}

.sidebar-panel,
.editor-panel,
.advanced-stack,
.structured-editor,
.collection-items,
.summary-grid,
.classic-summary-grid,
.quick-actions,
.classic-action-list,
.detail-list,
.classic-complex-list {
  display: grid;
  gap: 10px;
}

.editor-panel {
  align-content: start;
}

.sidebar-panel {
  align-content: start;
  align-self: start;
}

.retro-box,
.tabs-panel,
.editor-head,
.summary-card,
.file-item,
.readonly-block {
  border: 1px solid var(--window-line);
  background: var(--window-face-strong);
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.retro-box,
.tabs-panel,
.editor-head {
  padding: 10px;
}

.box-head {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.box-head-stack {
  display: grid;
  gap: 6px;
  justify-content: stretch;
}

.box-title,
.panel-kicker,
.summary-card-label,
.collection-item-title strong,
.detail-row-label,
.field-label,
.inline-map-title,
.type-pill,
.meta-pill,
.enum-pill,
.flag-pill,
.mini-indicator,
.classic-legend {
  font-weight: 700;
}

.box-title {
  font-size: 0.9rem;
}

.box-copy,
.field-note,
.json-label,
.quick-action-copy,
.classic-inline-note,
.selection-copy,
.empty-state,
.empty-inline,
.readonly-copy,
.file-item-copy,
.classic-complex-value,
.panel p,
.head-copy p {
  margin: 0;
  color: var(--window-ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.intro-steps {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 6px;
  color: var(--window-ink-soft);
  font-size: 0.82rem;
  line-height: 1.45;
}

.intro-tip {
  margin: 8px 0 0;
  color: var(--window-ink-soft);
  font-size: 0.78rem;
  line-height: 1.45;
}

.path-guide {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding: 8px;
  border: 1px solid var(--window-line);
  background: #d4d0c8;
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.path-guide-title {
  font-size: 0.84rem;
}

.path-guide-copy {
  margin: 0;
  color: var(--window-ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

.path-guide-code {
  padding: 6px 8px;
  border: 1px solid var(--window-line);
  background: #ffffff;
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
  font: 400 0.75rem/1.35 var(--mono-font);
  word-break: break-all;
}

.mini-indicator,
.type-pill,
.meta-pill,
.enum-pill,
.flag-pill,
.field-warning {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 8px;
  border: 1px solid var(--window-line);
  background: var(--field-face);
  box-shadow:
    inset 1px 1px 0 var(--field-highlight),
    inset -1px -1px 0 var(--field-shadow);
  font-size: 0.74rem;
}

.file-list {
  display: grid;
  gap: 6px;
  max-height: 58vh;
  overflow: auto;
  padding-right: 2px;
}

.file-item {
  width: 100%;
  padding: 8px;
  text-align: left;
  background: var(--window-face);
}

.file-item:hover {
  background: #d4d0c8;
}

.file-item.is-selected {
  color: #ffffff;
  background: #000080;
}

.file-item.is-selected .file-item-copy,
.file-item.is-selected .file-item-name {
  color: #ffffff;
}

.file-item.is-selected .type-pill {
  color: #ffffff;
  border-color: #ffffff;
  background: #000080;
  box-shadow: none;
}

.file-item.is-dirty .file-item-name::after {
  content: "modified";
  display: inline-block;
  margin-left: 8px;
  color: #6f3f30;
  font-size: 0.72rem;
  text-transform: uppercase;
}

.file-item-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.file-item-name {
  font-size: 0.92rem;
  word-break: break-word;
}

.selection-header {
  display: grid;
  gap: 8px;
}

.selection-title-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.selection-title {
  margin: 0;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.2;
}

.selection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.classic-summary-grid,
.summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.summary-card {
  padding: 10px;
  background: var(--window-face);
}

.summary-card-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.summary-card-value {
  display: block;
  font-size: 0.92rem;
  line-height: 1.3;
  word-break: break-word;
}

.classic-empty,
.empty-state,
.empty-inline {
  padding: 10px;
  border: 1px dashed var(--window-line);
  background: #d4d0c8;
}

.classic-layout {
  display: grid;
  gap: 12px;
}

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

.classic-group {
  margin: 0;
  padding: 10px;
  border: 1px solid var(--window-line);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.classic-legend {
  padding: 0 6px;
  font-size: 0.86rem;
  background: var(--window-face);
}

.classic-group-copy {
  margin: 0 0 8px;
  color: var(--window-ink-soft);
  font-size: 0.78rem;
  line-height: 1.4;
}

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

.classic-field {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.classic-field.is-wide,
.classic-group.is-wide {
  grid-column: 1 / -1;
}

.classic-field-label {
  color: var(--window-ink);
  font-size: 0.8rem;
  line-height: 1.25;
}

.classic-readonly {
  min-height: 24px;
  padding: 6px 8px;
  border: 1px solid var(--window-line);
  background: var(--field-face);
  box-shadow:
    inset 1px 1px 0 var(--field-shadow),
    inset -1px -1px 0 var(--field-highlight);
  font-size: 0.82rem;
  line-height: 1.3;
}

.classic-inline-note {
  font-size: 0.76rem;
}

.classic-complex-list {
  gap: 8px;
}

.classic-complex-row {
  display: grid;
  grid-template-columns: minmax(110px, 150px) minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.classic-complex-name {
  font-weight: 700;
  font-size: 0.82rem;
}

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

.classic-schedule-table {
  display: grid;
  gap: 4px;
}

.classic-schedule-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px 56px 84px;
  gap: 8px;
  align-items: center;
}

.classic-schedule-head {
  margin-bottom: 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--window-line);
  font-size: 0.78rem;
  font-weight: 700;
}

.classic-schedule-name {
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1.25;
}

.classic-schedule-meta {
  text-align: center;
}

.classic-schedule-input {
  min-height: 22px;
  padding: 0 4px;
  text-align: center;
}

.classic-schedule-grade-input {
  padding-left: 2px;
  padding-right: 2px;
}

.classic-action-card {
  display: grid;
  gap: 8px;
  padding: 8px;
  border: 1px solid var(--window-line);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.head-top {
  align-items: start;
  justify-content: space-between;
}

.head-copy {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.head-copy h2 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.2;
}

.editor-head-actions {
  align-items: start;
  justify-content: flex-end;
}

.quick-actions {
  gap: 10px;
}

.quick-action-card {
  display: grid;
  gap: 6px;
}

.tabs-panel {
  background: var(--window-face);
}

.tab-bar {
  margin-bottom: 12px;
}

.tab-panel {
  display: none;
}

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

.field-input,
.field-select,
.field-textarea,
#json-editor,
.inline-map-key-input {
  width: 100%;
  color: var(--window-ink);
  border: 1px solid var(--window-line-strong);
  border-radius: 0;
  background: var(--field-face);
  box-shadow:
    inset 1px 1px 0 var(--field-shadow),
    inset -1px -1px 0 var(--field-highlight);
}

.field-input,
.field-select,
.inline-map-key-input {
  min-height: 24px;
  padding: 0 6px;
}

.field-textarea,
#json-editor {
  min-height: 100px;
  padding: 8px;
  resize: vertical;
  font-family: var(--mono-font);
  line-height: 1.45;
}

#json-editor {
  min-height: 360px;
}

.field-input:focus,
.field-select:focus,
.field-textarea:focus,
#json-editor:focus,
.inline-map-key-input:focus {
  outline: 1px dotted #000000;
  outline-offset: 0;
}

.checkbox-row,
.flag-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.flags-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 8px;
}

.flag-chip {
  min-height: 24px;
  padding: 0 8px;
  border: 1px solid var(--window-line);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.field-head {
  display: grid;
  gap: 6px;
  margin-bottom: 8px;
}

.field-block,
.collection-block,
.nested-object,
.helper-box {
  min-width: 0;
}

.collection-toolbar {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.collection-item,
.editor-section {
  border: 1px solid var(--window-line);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-highlight),
    inset -1px -1px 0 var(--window-shadow);
}

.collection-item > summary,
.editor-section > summary {
  position: relative;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 28px;
  list-style: none;
  cursor: pointer;
}

.collection-item > summary::-webkit-details-marker,
.editor-section > summary::-webkit-details-marker {
  display: none;
}

.collection-item > summary::before,
.editor-section > summary::before {
  content: ">";
  position: absolute;
  left: 10px;
  top: 10px;
  font-weight: 700;
}

.collection-item[open] > summary::before,
.editor-section[open] > summary::before {
  content: "v";
}

.collection-item-title,
.editor-section-title,
.collection-summary,
.key-stack,
.value-stack {
  display: grid;
  gap: 4px;
}

.section-fields,
.collection-item-body {
  display: grid;
  gap: 10px;
  padding: 0 10px 10px;
}

.readonly-block {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.readonly-value,
.readonly-inline-text {
  min-height: 24px;
  padding: 6px 8px;
  border: 1px solid var(--window-line);
  background: #ffffff;
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
}

.detail-row,
.inline-map-row {
  display: grid;
  grid-template-columns: minmax(130px, 190px) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.detail-row.is-stack {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.detail-row-separator,
.inline-map-separator {
  font-weight: 700;
}

.detail-row-stack-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.inline-map-main {
  display: grid;
  grid-template-columns: minmax(120px, 200px) auto minmax(0, 1fr);
  gap: 10px;
  align-items: center;
}

.inline-map-label {
  min-width: 0;
}

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

.map-table th,
.map-table td {
  padding: 8px;
  border: 1px solid rgba(120, 112, 103, 0.45);
  text-align: left;
  vertical-align: top;
}

.json-toolbar {
  margin-bottom: 12px;
}

.status-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  border-top: 1px solid var(--window-line);
  background: var(--window-face);
  font-size: 0.76rem;
}

.status-bar > span {
  min-height: 20px;
  padding: 2px 6px;
  color: var(--window-ink);
  border: 1px solid var(--window-line);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
}

#status-line-label {
  flex: 0 0 auto;
}

#status-line-path {
  flex: 1 1 260px;
}

.status-bar-credit {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  min-height: 20px;
  padding: 2px 6px;
  color: var(--window-ink);
  border: 1px solid var(--window-line);
  background: var(--window-face);
  box-shadow:
    inset 1px 1px 0 var(--window-shadow),
    inset -1px -1px 0 var(--window-highlight);
  white-space: nowrap;
}

.status-bar-credit a {
  color: #000080;
  text-decoration: underline;
}

.status-bar-credit a:hover,
.status-bar-credit a:focus-visible {
  color: #0000ff;
}

.status-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  max-width: min(420px, calc(100vw - 36px));
  padding: 12px 14px;
  color: #fffefc;
  border: 1px solid rgba(46, 33, 34, 0.85);
  background: rgba(58, 43, 45, 0.96);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
  font-size: 0.84rem;
  line-height: 1.5;
  white-space: pre-line;
}

.status-toast.is-success {
  background: rgba(61, 88, 53, 0.96);
}

.status-toast.is-error {
  background: rgba(116, 49, 41, 0.97);
}

@media (max-width: 1160px) {
  .workspace {
    grid-template-columns: 1fr;
  }

  .file-list {
    max-height: none;
  }

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

@media (max-width: 760px) {
  .desktop-shell {
    padding: 12px;
  }

  .title-bar,
  .menu-bar,
  .menu-row,
  .workspace {
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-bar {
    flex-wrap: wrap;
  }

  .site-links-row {
    padding-left: 10px;
    padding-right: 10px;
  }

  .menu-bar-note {
    width: 100%;
    padding-left: 0;
  }

  .menu-row {
    gap: 6px;
  }

  .menu-spacer {
    display: none;
  }

  .status-bar-credit {
    flex-basis: 100%;
    justify-content: flex-start;
    white-space: normal;
  }

  .summary-grid,
  .classic-summary-grid,
  .classic-groups,
  .classic-field-grid,
  .classic-action-list {
    grid-template-columns: 1fr;
  }

  .file-item-top,
  .detail-row,
  .inline-map-row,
  .inline-map-main,
  .classic-schedule-row {
    grid-template-columns: 1fr;
  }

  .detail-row-separator,
  .inline-map-separator {
    display: none;
  }
}
