:root {
  color-scheme: light;
  --bg: #f3f5f4;
  --surface: #ffffff;
  --ink: #15201a;
  --muted: #657169;
  --line: #d8dfda;
  --green: #176b45;
  --green-soft: #eaf4ee;
  --blue: #255f91;
  --blue-soft: #eaf1f8;
  --gold: #8a6519;
  --gold-soft: #f6f1e3;
  --red: #a5413d;
  --red-soft: #f8eceb;
  --shadow: 0 12px 30px rgba(21, 32, 26, 0.08);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(37, 95, 145, 0.22);
  outline-offset: 2px;
}

button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.date-option:disabled,
.primary-action:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

#quoteStatus[data-tone="inventory_unavailable"] {
  color: var(--red);
  background: #fff0ef;
  border-color: #e5b8b4;
}

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

h1 {
  margin-bottom: 0;
  font-size: 27px;
  line-height: 1.2;
}

h2 {
  margin-bottom: 0;
  font-size: 19px;
  line-height: 1.3;
}

h3 {
  font-size: 16px;
  line-height: 1.35;
}

.market-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  border-bottom: 1px solid var(--line);
  padding: 10px max(20px, calc((100vw - 1440px) / 2));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
}

.brand strong,
.brand small {
  display: block;
  letter-spacing: 0;
}

.brand strong {
  font-size: 17px;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.text-button,
.admin-link {
  border: 0;
  border-radius: 6px;
  padding: 9px 10px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  text-decoration: none;
}

.text-button:hover,
.admin-link:hover {
  background: #eef1ef;
  color: var(--ink);
}

.admin-link {
  border-left: 1px solid var(--line);
  border-radius: 0;
  margin-left: 3px;
  padding-left: 13px;
}

.market-shell {
  width: min(100%, 1440px);
  margin: 0 auto;
}

.market-search {
  border-bottom: 1px solid var(--line);
  padding: 24px 20px 20px;
  background: var(--surface);
}

.search-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.section-kicker {
  margin-bottom: 4px;
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.live-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
}

.live-status::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.search-form {
  display: grid;
  grid-template-columns: minmax(160px, 1.2fr) minmax(120px, 0.8fr) minmax(160px, 1fr) minmax(160px, 1fr) auto;
  align-items: end;
  gap: 10px;
  border: 1px solid #cbd4ce;
  border-radius: 8px;
  padding: 10px;
  background: #fbfcfb;
  box-shadow: 0 4px 14px rgba(21, 32, 26, 0.05);
}

.search-form label,
.booking-fields label,
.contact-fields label,
.dialog-form label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: var(--muted);
  font-size: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 11px;
  background: #fff;
  color: var(--ink);
}

textarea {
  resize: vertical;
}

.primary-action,
.secondary-action,
.icon-button {
  min-height: 40px;
  border: 0;
  border-radius: 6px;
  padding: 9px 14px;
  cursor: pointer;
  font-weight: 700;
}

.primary-action {
  background: var(--green);
  color: #fff;
}

.primary-action:hover {
  background: #105b39;
}

.secondary-action {
  border: 1px solid #bed1c4;
  background: var(--green-soft);
  color: var(--green);
}

.danger-action {
  min-height: 38px;
  border: 1px solid #d9b6b3;
  border-radius: 6px;
  padding: 8px 12px;
  background: var(--red-soft);
  color: var(--red);
  cursor: pointer;
  font-weight: 700;
}

.market-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: start;
  gap: 18px;
  padding: 18px 20px 36px;
}

.catalog-pane {
  min-width: 0;
}

.catalog-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.catalog-toolbar h2 span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.filter-row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  min-width: 0;
}

.filter-row select {
  width: auto;
  max-width: 150px;
  padding: 8px 9px;
  font-size: 12px;
}

.availability-toggle,
.terms-check {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}

.availability-toggle input,
.terms-check input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--green);
}

.active-filters {
  display: flex;
  min-height: 26px;
  gap: 6px;
  margin-bottom: 8px;
  overflow-x: auto;
}

.active-filters span,
.tag-list span,
.detail-meta span,
.availability {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  border-radius: 999px;
  padding: 3px 8px;
  background: #edf1ee;
  color: var(--muted);
  font-size: 11px;
  white-space: nowrap;
}

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

.route-card {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 6px 18px rgba(21, 32, 26, 0.05);
}

.route-card.selected {
  border-color: var(--green);
  box-shadow: 0 0 0 2px rgba(23, 107, 69, 0.12);
}

.route-card-art {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 250px;
  padding: 14px;
  color: #fff;
}

.route-card-art span {
  font-size: 12px;
  font-weight: 700;
}

.route-card-art strong {
  font-size: 34px;
  line-height: 1;
}

.route-card-art.heritage {
  background: #315c49;
}

.route-card-art.heritage-alt {
  background: #466c87;
}

.route-card-art.greatwall {
  background: #7a6540;
}

.route-card-art.grassland {
  background: #47705b;
}

.route-card-art.wellness {
  background: #65718c;
}

.route-card-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 13px;
}

.route-card-topline,
.route-facts,
.route-actions,
.selected-route,
.price-summary > div,
.lookup-card > div,
.review-list article > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.route-card-topline {
  color: var(--muted);
  font-size: 11px;
}

.availability.available {
  background: var(--green-soft);
  color: var(--green);
}

.availability.limited {
  background: var(--gold-soft);
  color: var(--gold);
}

.availability.unavailable {
  background: var(--red-soft);
  color: var(--red);
}

.route-card h3 {
  margin: 10px 0 6px;
}

.route-card-body > p {
  display: -webkit-box;
  min-height: 42px;
  margin-bottom: 9px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.tag-list {
  display: flex;
  gap: 5px;
  overflow-x: auto;
}

.route-facts {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}

.route-facts span:last-child {
  grid-column: 1 / -1;
}

.route-facts b {
  color: var(--ink);
}

.route-actions {
  margin-top: auto;
  padding-top: 12px;
}

.route-actions button {
  flex: 1;
  padding-inline: 8px;
  font-size: 12px;
}

.empty-state {
  border: 1px dashed #bdc7c0;
  border-radius: 8px;
  padding: 32px;
  background: #fafbfa;
  color: var(--muted);
  text-align: center;
}

.empty-state strong,
.empty-state button {
  display: block;
  margin: 0 auto 12px;
}

.booking-drawer {
  position: sticky;
  top: 84px;
  max-height: calc(100vh - 104px);
  overflow-y: auto;
  border: 1px solid #cbd4ce;
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
  box-shadow: var(--shadow);
  scrollbar-width: thin;
}

.booking-empty {
  min-height: 180px;
  padding: 6px;
}

.booking-empty p:last-child,
.selected-route p,
.payment-boundary {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

#reservationForm {
  display: grid;
  gap: 12px;
}

.selected-route {
  align-items: start;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.selected-route h2 {
  margin-top: 7px;
}

.selected-route .text-button {
  flex: 0 0 auto;
}

.quote-status {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: #f7f9f7;
  color: var(--muted);
  font-size: 12px;
}

.quote-status[data-tone="ready"] {
  border-color: #bfdbc8;
  background: var(--green-soft);
  color: var(--green);
}

.quote-status[data-tone="error"] {
  border-color: #e2c3c1;
  background: var(--red-soft);
  color: var(--red);
}

.booking-fields,
.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
}

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

.price-summary {
  display: grid;
  gap: 7px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
}

.price-summary > div {
  color: var(--muted);
  font-size: 13px;
}

.price-summary .price-total strong {
  color: var(--green);
  font-size: 24px;
}

.price-summary details {
  color: var(--muted);
  font-size: 12px;
}

.price-summary summary {
  cursor: pointer;
}

.price-summary details p {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 7px 0 0;
}

.wide-action {
  width: 100%;
}

.payment-boundary {
  margin: -5px 0 0;
  text-align: center;
}

.reservation-status:empty,
.lookup-result:empty,
.support-result:empty {
  display: none;
}

.reservation-receipt,
.lookup-card,
.support-card {
  display: grid;
  gap: 7px;
  border: 1px solid #bcd6c5;
  border-radius: 8px;
  padding: 13px;
  background: var(--green-soft);
}

.reservation-receipt > strong {
  font-size: 21px;
  letter-spacing: 0;
}

.reservation-receipt p,
.reservation-receipt small,
.lookup-card p,
.support-card p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.reservation-receipt > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.success-mark {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
}

.simulation-payment {
  display: grid;
  gap: 8px;
  margin: 6px -13px;
  border-top: 1px solid #d2c189;
  border-bottom: 1px solid #d2c189;
  padding: 12px 13px;
  background: #fff8df;
}

.simulation-payment.completed {
  border-color: #bcd6c5;
  background: #f3faf5;
}

.simulation-payment > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.simulation-payment > div span {
  color: #76580f;
  font-size: 12px;
  font-weight: 700;
}

.simulation-payment > code {
  display: block;
  max-width: 100%;
  overflow-wrap: anywhere;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.35;
  text-align: center;
}

.simulation-payment > p,
.simulation-payment > small {
  margin: 0;
}

.simulation-payment-feedback:empty {
  display: none;
}

.market-dialog {
  width: min(900px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(21, 32, 26, 0.24);
}

.market-dialog::backdrop {
  background: rgba(14, 23, 18, 0.48);
}

.compact-dialog {
  width: min(480px, calc(100vw - 32px));
}

.dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 15px 18px;
  background: rgba(255, 255, 255, 0.98);
}

.icon-button {
  display: grid;
  place-items: center;
  width: 38px;
  min-height: 38px;
  padding: 0;
  background: #edf1ee;
  color: var(--ink);
  font-size: 24px;
  font-weight: 400;
}

.detail-meta {
  display: flex;
  gap: 6px;
  padding: 14px 18px 0;
  overflow-x: auto;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 18px;
}

.detail-layout section {
  min-width: 0;
}

.detail-merchants-section {
  grid-column: 1 / -1;
}

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

.detail-merchant-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.detail-merchant-card img {
  width: 76px;
  height: 58px;
  object-fit: cover;
  border-radius: 4px;
}

.detail-merchant-card span,
.detail-merchant-card strong,
.detail-merchant-card small {
  min-width: 0;
  display: block;
}

.detail-merchant-card small {
  margin-top: 4px;
  color: var(--muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.detail-merchant-card b {
  color: var(--green);
  font-size: 12px;
}

.detail-list,
.review-list,
.date-options {
  display: grid;
  gap: 8px;
}

.detail-list article,
.review-list article {
  display: grid;
  gap: 5px;
  border-bottom: 1px solid var(--line);
  padding: 8px 0 11px;
}

.detail-list article:last-child,
.review-list article:last-child {
  border-bottom: 0;
}

.detail-list span,
.review-list span,
.review-list p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.review-list b {
  color: var(--green);
  font-size: 12px;
}

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

.date-option {
  display: grid;
  gap: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 9px 10px;
  background: #f9faf9;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.date-option span {
  color: var(--muted);
  font-size: 11px;
}

.dialog-actions {
  position: sticky;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--green);
  font-weight: 700;
}

.dialog-form {
  display: grid;
  gap: 11px;
  padding: 18px;
}

.lookup-result,
.support-result {
  padding: 0 18px 18px;
}

.lookup-card > div span {
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 11px;
}

.reservation-contract-panel,
.reservation-complaint-panel,
.complaint-follow-up-form {
  margin: 0 18px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfb;
}

.contract-dialog-form {
  padding-bottom: 10px;
}

.contract-clauses {
  display: grid;
  gap: 9px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
}

.contract-clauses legend {
  padding: 0 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.contract-clauses label {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 9px;
  align-items: start;
}

.contract-clauses input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
}

.complaint-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 14px 18px;
}

.complaint-panel-head h3,
.reservation-complaint-history h4 {
  margin: 3px 0 0;
}

.complaint-panel-head > span {
  color: var(--muted);
  font-size: 11px;
}

.complaint-dialog-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-bottom: 10px;
}

.complaint-description,
.complaint-dialog-form > button {
  grid-column: 1 / -1;
}

.complaint-submit-status {
  padding: 0 18px 16px;
}

.complaint-submit-status:empty {
  display: none;
}

.reservation-complaint-history {
  display: grid;
  gap: 8px;
  margin-top: 8px;
  border-top: 1px solid #bcd6c5;
  padding-top: 12px;
}

.reservation-complaint-history > article {
  display: grid;
  gap: 6px;
  border-left: 3px solid var(--gold);
  padding: 10px;
  background: #fff;
}

.reservation-complaint-history > article[data-status="closed"] {
  border-left-color: var(--green);
}

.reservation-complaint-history article > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.reservation-complaint-history article span,
.reservation-complaint-history article small {
  color: var(--muted);
  font-size: 11px;
}

.complaint-follow-up-form {
  display: grid;
  gap: 12px;
  padding: 16px 18px;
}

.complaint-follow-up-form[hidden] {
  display: none;
}

.complaint-follow-up-form fieldset {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  border: 0;
  padding: 0;
}

.complaint-follow-up-form legend {
  width: 100%;
  margin-bottom: 7px;
  font-weight: 700;
}

.complaint-follow-up-form fieldset label {
  display: flex;
  align-items: center;
  gap: 6px;
}

.complaint-follow-up-form input[type="radio"] {
  width: auto;
}

.error-message {
  margin: 0;
  border-radius: 6px;
  padding: 10px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 12px;
}

.success-message {
  margin: 0;
  border-radius: 6px;
  padding: 10px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  .market-workspace {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .route-results {
    grid-template-columns: 1fr;
  }

  .route-card-art {
    min-height: 220px;
  }

  .catalog-toolbar {
    align-items: start;
    flex-direction: column;
  }

  .filter-row {
    justify-content: flex-start;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 3px;
  }

  .filter-row select {
    flex: 0 0 auto;
  }
}

@media (max-width: 900px) {
  .search-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-form .primary-action {
    grid-column: 1 / -1;
  }

  .market-workspace {
    grid-template-columns: 1fr;
  }

  .booking-drawer {
    position: static;
    max-height: none;
  }

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

@media (max-width: 760px) {
  .market-header {
    position: static;
    min-height: 58px;
    padding: 9px 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .brand small,
  .admin-link {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .text-button {
    padding: 8px;
  }

  .market-search {
    padding: 16px 12px 14px;
  }

  .search-heading {
    align-items: start;
    flex-direction: column;
    margin-bottom: 12px;
  }

  h1 {
    font-size: 23px;
  }

  .search-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 9px;
  }

  .market-workspace {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 14px 12px 28px;
  }

  .catalog-pane,
  .booking-drawer {
    width: 100%;
    min-width: 0;
  }

  .filter-row {
    flex-wrap: wrap;
    width: 100%;
    overflow-x: visible;
    padding-bottom: 0;
  }

  .filter-row select {
    flex: 1 1 calc(50% - 4px);
    width: calc(50% - 4px);
    min-width: 0;
    max-width: none;
  }

  .filter-row .availability-toggle {
    flex: 1 0 100%;
  }

  .route-results {
    display: flex;
    gap: 10px;
    width: calc(100vw - 24px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 1px 8px;
  }

  .route-card {
    flex: 0 0 calc(100vw - 48px);
    grid-template-columns: 1fr;
    scroll-snap-align: start;
  }

  .route-card-art {
    min-height: 96px;
  }

  .route-card-art strong {
    font-size: 28px;
  }

  .route-card-body > p {
    min-height: 0;
  }

  .booking-drawer {
    padding: 14px;
  }

  .booking-fields,
  .contact-fields {
    grid-template-columns: 1fr 1fr;
  }

  .detail-layout {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .detail-merchant-list {
    grid-template-columns: 1fr;
  }

  .detail-merchant-card {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .detail-merchant-card img {
    width: 64px;
    height: 52px;
  }

  .detail-merchant-card b {
    grid-column: 2;
  }

  .dialog-header,
  .dialog-actions {
    padding: 12px 14px;
  }

  .dialog-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .dialog-actions .primary-action {
    width: 100%;
  }
}

@media (max-width: 390px) {
  .booking-fields,
  .contact-fields {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .date-options {
    grid-template-columns: 1fr;
  }

  .complaint-dialog-form {
    grid-template-columns: 1fr;
  }

  .complaint-description,
  .complaint-dialog-form > button {
    grid-column: 1;
  }

  .reservation-contract-panel,
  .reservation-complaint-panel,
  .complaint-follow-up-form {
    margin-right: 12px;
    margin-left: 12px;
  }
}
