:root {
  --background: #f7faf8;
  --background-deep: #e7efec;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: #ffffff;
  --surface-soft: #ebefed;
  --surface-muted: #e0e3e1;
  --surface-dark: #123436;
  --text: #181c1c;
  --text-muted: #556361;
  --text-soft: #6e7977;
  --border: rgba(62, 73, 71, 0.12);
  --border-strong: rgba(0, 92, 85, 0.18);
  --primary: #005c55;
  --primary-strong: #0f766e;
  --primary-soft: #d8f0ec;
  --dealer-accent: #0f766e;
  --warning: #9c573a;
  --danger: #ba1a1a;
  --shadow: 0 24px 70px rgba(15, 29, 32, 0.12);
  --shadow-soft: 0 10px 30px rgba(15, 29, 32, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  font-family: "Inter", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(15, 118, 110, 0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(156, 87, 58, 0.08), transparent 24%),
    linear-gradient(180deg, var(--background), var(--background-deep));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 90%);
  opacity: 0.24;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.hidden {
  display: none !important;
}

.app-frame {
  display: grid;
  grid-template-columns: 272px minmax(0, 1fr);
  min-height: 100vh;
}

.side-nav {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
  height: 100vh;
  padding: 28px 22px;
  background: rgba(248, 251, 250, 0.92);
  backdrop-filter: blur(24px);
  border-right: 1px solid rgba(62, 73, 71, 0.08);
  z-index: 20;
}

.side-nav__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 12px 24px rgba(0, 92, 85, 0.2);
}

.side-nav__brand h1,
.top-bar__left h2,
.panel-heading h3,
.panel-heading h4,
.auth-panel__intro h3,
.form-heading h4,
.context-card h4,
.welcome-strip h3 {
  margin: 0;
}

.side-nav__brand h1 {
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #0d403b;
}

.side-nav__brand p,
.panel-copy,
.welcome-strip__copy,
.auth-panel__intro p {
  margin: 6px 0 0;
}

.side-nav__brand p {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.side-nav__links,
.side-nav__footer {
  display: grid;
  gap: 6px;
}

.side-nav a,
.side-nav button,
.top-bar__nav a,
.icon-button,
.primary-button,
.secondary-button,
.metric-chip,
.status-pill {
  transition:
    transform 140ms ease,
    background-color 140ms ease,
    border-color 140ms ease,
    box-shadow 140ms ease,
    color 140ms ease;
}

.side-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 600;
}

.side-nav a:hover {
  background: rgba(0, 92, 85, 0.08);
  color: #0d403b;
}

.side-nav a.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 12px 24px rgba(0, 92, 85, 0.18);
  transform: translateX(6px);
}

.side-nav__cta,
.fab,
.primary-button,
.secondary-button,
.icon-button {
  border: none;
  cursor: pointer;
  font: inherit;
}

.side-nav__cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
}

.side-nav__cta,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 36px rgba(0, 92, 85, 0.22);
}

.primary-button:hover,
.secondary-button:hover,
.icon-button:hover,
.fab:hover,
.side-nav__cta:hover {
  transform: translateY(-1px);
}

.secondary-button,
.icon-button {
  color: #114540;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(62, 73, 71, 0.12);
  box-shadow: var(--shadow-soft);
}

.secondary-button:disabled,
.primary-button:disabled,
.icon-button:disabled,
.action-button:disabled,
.fab:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.side-nav__footer {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(62, 73, 71, 0.08);
}

.main-shell {
  min-width: 0;
}

.top-bar {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 22px 32px;
  background: rgba(239, 247, 244, 0.88);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(62, 73, 71, 0.08);
  z-index: 10;
}

.top-bar__left,
.top-bar__right,
.top-bar__nav,
.welcome-strip__metrics,
.panel-heading,
.json-panel__header,
.dealer-form__actions,
.traffic-panel__legend,
.auth-panel__chips {
  display: flex;
  align-items: center;
}

.top-bar__left {
  gap: 28px;
}

.top-bar__eyebrow,
.section-kicker {
  margin: 0 0 6px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.top-bar__left h2,
.welcome-strip h3 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.top-bar__nav {
  gap: 18px;
}

.top-bar__nav a {
  padding: 8px 0;
  color: #4d6663;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
}

.top-bar__nav a.is-active,
.top-bar__nav a:hover {
  color: #0d403b;
  border-color: var(--primary-strong);
}

.top-bar__right {
  gap: 12px;
}

.search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 280px;
  padding: 0 14px;
  height: 44px;
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(0, 92, 85, 0.08);
  border: 1px solid rgba(0, 92, 85, 0.08);
}

.search-field input {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font: inherit;
  color: var(--text);
}

.icon-button {
  width: 44px;
  height: 44px;
  border-radius: 999px;
}

.icon-button--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.content-shell {
  padding: 28px 32px 44px;
}

.panel,
.welcome-strip,
.status-banner {
  border: 1px solid rgba(62, 73, 71, 0.1);
  box-shadow: var(--shadow);
}

.panel,
.welcome-strip,
.status-banner,
.snapshot-card,
.context-card,
.metric-chip,
.snippet-panel,
.tuning-card,
.json-panel,
.workflow-panel,
.workflow-card,
.raw-output {
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.panel,
.auth-panel,
.welcome-strip,
.status-banner {
  border-radius: var(--radius-xl);
}

.panel {
  padding: 24px;
}

.panel--dense {
  padding: 22px;
}

.inset-panel {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.auth-panel {
  display: grid;
  grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
  gap: 20px;
  padding: 28px;
}

.auth-panel__intro {
  padding: 16px 10px 16px 2px;
}

.auth-panel__intro h3 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  max-width: 10ch;
}

.auth-panel__intro p {
  max-width: 34rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.auth-panel__chips {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.auth-panel__chips span,
.metric-chip,
.status-pill,
.snapshot-card__chip,
.traffic-panel__legend span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.auth-panel__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  color: #0d403b;
  background: rgba(0, 92, 85, 0.08);
}

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

.form-stack,
.dealer-form,
.snippet-panel,
.json-panel,
.workflow-panel,
.activity-feed {
  display: grid;
  gap: 16px;
}

.form-heading p {
  margin-bottom: 8px;
}

.form-heading h4,
.panel-heading h3,
.panel-heading h4,
.context-card h4 {
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.panel-heading {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.panel-heading--compact {
  margin-bottom: 12px;
}

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

.dealer-form__grid--tight {
  gap: 14px;
}

.dealer-form__full {
  grid-column: 1 / -1;
}

.dealer-form__actions {
  justify-content: flex-end;
}

.tuning-card {
  padding: 18px;
  border: 1px solid rgba(62, 73, 71, 0.08);
  border-radius: var(--radius-lg);
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

label > span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid transparent;
  border-bottom: 2px solid rgba(110, 121, 119, 0.26);
  border-radius: 14px 14px 10px 10px;
  padding: 14px 16px;
  background: rgba(224, 227, 225, 0.55);
  outline: none;
  font: inherit;
  color: var(--text);
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(15, 118, 110, 0.2);
  border-bottom-color: var(--dealer-accent);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.08);
}

textarea {
  min-height: 128px;
  resize: vertical;
}

.microcopy {
  margin: 0;
  min-height: 20px;
  color: var(--text-muted);
  line-height: 1.5;
}

.microcopy a {
  color: var(--primary);
  font-weight: 700;
}

.status-banner {
  padding: 14px 18px;
  margin-bottom: 18px;
  font-size: 0.95rem;
  font-weight: 600;
}

.status-banner--success {
  color: #0d403b;
  background: rgba(163, 250, 239, 0.62);
}

.status-banner--error {
  color: #7c1515;
  background: rgba(255, 218, 214, 0.76);
}

.status-banner--info {
  color: #114540;
  background: rgba(200, 233, 228, 0.7);
}

.welcome-strip {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
  padding: 28px;
  margin-bottom: 24px;
}

.welcome-strip__copy {
  color: var(--text-muted);
  line-height: 1.5;
}

.welcome-strip__metrics {
  gap: 12px;
  flex-wrap: wrap;
}

.metric-chip {
  gap: 10px;
  padding: 12px 16px;
  border-radius: 16px;
  border: 1px solid rgba(0, 92, 85, 0.08);
  color: #0f4b47;
}

.metric-chip--muted {
  color: var(--text-muted);
}

.metric-chip__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary-strong), var(--primary));
  box-shadow: 0 0 12px rgba(0, 92, 85, 0.4);
}

.bento-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(340px, 0.95fr);
  gap: 24px;
}

.bento-grid__main,
.bento-grid__side {
  display: grid;
  gap: 24px;
}

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

.snapshot-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(62, 73, 71, 0.08);
  border-bottom: 3px solid var(--dealer-accent);
  cursor: pointer;
}

.snapshot-card--inactive {
  border-bottom-color: rgba(110, 121, 119, 0.35);
  cursor: default;
}

.snapshot-card--selected {
  border-color: rgba(15, 118, 110, 0.18);
  box-shadow: 0 16px 28px rgba(0, 92, 85, 0.12);
  transform: translateY(-1px);
}

.snapshot-card__header,
.snapshot-card__row,
.context-card,
.json-panel__header,
.traffic-panel__legend {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.snapshot-card__title {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.snapshot-card__chip,
.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 10px;
  border-radius: 999px;
}

.snapshot-card__chip.status-success,
.status-pill.status-success {
  color: #0d403b;
  background: rgba(163, 250, 239, 0.58);
}

.snapshot-card__chip.status-warning,
.status-pill.status-warning {
  color: #6f3116;
  background: rgba(255, 219, 206, 0.72);
}

.snapshot-card__chip.status-neutral,
.status-pill.status-neutral {
  color: var(--text-muted);
  background: rgba(224, 227, 225, 0.78);
}

.snapshot-card__rows {
  display: grid;
  gap: 10px;
}

.snapshot-card__row {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.snapshot-card__row strong {
  color: var(--text);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.context-card {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(235, 239, 237, 0.86);
}

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

.status-card {
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(62, 73, 71, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.status-card strong,
.activity-card__meta {
  display: block;
  margin-bottom: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.status-card span {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.status-card.status-success span {
  color: #0d403b;
}

.status-card.status-warning span {
  color: #7a391d;
}

.status-card.status-neutral span {
  color: var(--text-muted);
}

.status-success {
  color: #0d403b;
}

.status-warning {
  color: #7a391d;
}

.status-neutral {
  color: var(--text-muted);
}

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

.action-button {
  min-height: 54px;
}

.snippet-panel textarea,
.json-box {
  width: 100%;
  min-height: 190px;
  padding: 16px;
  border: 1px solid rgba(0, 92, 85, 0.12);
  border-radius: 18px;
  background: #082a29;
  color: #d8f0ec;
  font-family: "Consolas", "SFMono-Regular", monospace;
  font-size: 0.82rem;
  line-height: 1.6;
  overflow: auto;
  white-space: pre-wrap;
}

.json-panel__header {
  margin-bottom: 10px;
}

.json-panel__header span {
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-strong);
}

.workflow-panel {
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(62, 73, 71, 0.08);
}

.workflow-note {
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.workflow-note--neutral {
  color: var(--text-muted);
  background: rgba(224, 227, 225, 0.7);
}

.workflow-note--success {
  color: #0d403b;
  background: rgba(216, 240, 236, 0.9);
}

.workflow-note--warning {
  color: #7a391d;
  background: rgba(255, 237, 228, 0.92);
}

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

.workflow-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid rgba(62, 73, 71, 0.08);
}

.workflow-card--wide {
  grid-column: span 2;
}

.srp-preview-frame {
  width: 100%;
  min-height: 420px;
  border: 1px solid rgba(62, 73, 71, 0.12);
  border-radius: 18px;
  background: #ffffff;
}

.next-actions-list,
.stack-list {
  display: grid;
  gap: 10px;
}

.next-action,
.stack-item {
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(62, 73, 71, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.next-action {
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
}

.next-action span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  font-size: 0.78rem;
  font-weight: 800;
}

.next-action p,
.stack-item span,
.stack-item strong {
  margin: 0;
}

.stack-item strong {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.stack-item span,
.next-action p {
  color: var(--text-muted);
  line-height: 1.5;
}

.stack-item--empty {
  color: var(--text-soft);
  background: rgba(235, 239, 237, 0.8);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.field-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(0, 92, 85, 0.08);
  color: #0d403b;
  font-size: 0.8rem;
  font-weight: 700;
}

.bridge-form {
  display: grid;
  gap: 14px;
}

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

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

.bridge-form label {
  display: grid;
  gap: 8px;
}

.bridge-form label span {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.raw-output {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(62, 73, 71, 0.08);
}

.raw-output summary {
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.glass-panel {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.5)),
    radial-gradient(circle at top right, rgba(15, 118, 110, 0.12), transparent 32%);
}

.glass-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  top: -72px;
  right: -72px;
  border-radius: 999px;
  background: rgba(15, 118, 110, 0.08);
  filter: blur(24px);
}

.traffic-panel {
  padding-bottom: 20px;
}

.traffic-bars {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  align-items: end;
  min-height: 132px;
}

.traffic-bar {
  border-radius: 12px 12px 4px 4px;
  background: linear-gradient(180deg, rgba(15, 118, 110, 0.18), var(--dealer-accent));
  box-shadow: inset 0 -12px 24px rgba(255, 255, 255, 0.08);
}

.traffic-panel__legend {
  position: relative;
  z-index: 1;
  margin-top: 16px;
  color: var(--text-soft);
}

.activity-feed {
  gap: 12px;
}

.activity-card {
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(62, 73, 71, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.activity-card__title {
  margin: 0 0 6px;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.activity-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.5;
  font-size: 0.9rem;
}

.activity-card--placeholder {
  color: var(--text-soft);
  background: rgba(224, 227, 225, 0.5);
}

.fab {
  position: fixed;
  right: 28px;
  bottom: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-strong));
  box-shadow: 0 18px 36px rgba(0, 92, 85, 0.24);
  z-index: 30;
}

@media (max-width: 1240px) {
  .bento-grid,
  .auth-panel,
  .auth-panel__forms,
  .snapshot-grid,
  .workflow-grid {
    grid-template-columns: 1fr;
  }

  .workflow-card--wide {
    grid-column: auto;
  }

  .top-bar {
    align-items: flex-start;
  }
}

@media (max-width: 1024px) {
  .app-frame {
    grid-template-columns: 1fr;
  }

  .side-nav {
    position: static;
    height: auto;
    border-right: none;
    border-bottom: 1px solid rgba(62, 73, 71, 0.08);
  }

  .side-nav__cta {
    width: 100%;
  }
}

@media (max-width: 860px) {
  .content-shell,
  .top-bar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .top-bar,
  .welcome-strip {
    flex-direction: column;
    align-items: stretch;
  }

  .top-bar__left,
  .top-bar__right,
  .dealer-form__grid,
  .status-summary,
  .action-grid,
  .bridge-form__grid,
  .bridge-form__grid--mapping {
    grid-template-columns: 1fr;
    flex-wrap: wrap;
  }

  .search-field {
    min-width: 0;
    width: 100%;
  }
}
