:root {
  --ink: #25292e;
  --muted: #65707a;
  --line: #dfe3e7;
  --paper: #f6f7f8;
  --orange: #bd4f1c;
  --green: #267052;
  --blue: #285b9a;
  --white: #fff;
  font:
    14px Arial,
    Helvetica,
    sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
a {
  color: var(--blue);
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: "Trebuchet MS", Arial, sans-serif;
}
h1 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
h2 {
  font-size: 18px;
}
h3 {
  font-size: 15px;
}
p {
  line-height: 1.6;
}
small {
  font-size: 12px;
}
.muted {
  color: var(--muted);
}
svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
button,
a,
input,
select,
textarea,
summary {
  outline-offset: 4px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
}
.pilot-bar {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  color: var(--muted);
}
.pilot-bar strong {
  color: var(--ink);
}
.demo-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.role-switch {
  display: flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 6px;
  gap: 3px;
}
.role-switch button {
  padding: 6px 12px;
  border-radius: 3px;
  font-size: 12px;
}
.role-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: white;
}
.workspace {
  min-height: calc(100vh - 58px);
  display: flex;
  flex-direction: column;
}
.app-header {
  min-height: 85px;
  padding: 16px max(24px, calc((100% - 1120px) / 2));
  display: flex;
  gap: 40px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}
.brand img {
  object-fit: cover;
  border-radius: 4px;
}
.brand strong {
  font:
    700 18px "Trebuchet MS",
    Arial,
    sans-serif;
}
.brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}
#navigation {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.nav {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 12px 8px;
  min-height: 44px;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  font-size: 13px;
}
.nav.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}
.nav-count {
  font-size: 11px;
  background: #fff0e8;
  padding: 2px 5px;
  border-radius: 3px;
}
#session-label {
  font-size: 12px;
  max-width: 220px;
  overflow-wrap: anywhere;
  text-align: right;
}
main {
  width: 100%;
  max-width: 1168px;
  margin: auto;
  padding: 36px 24px 56px;
  flex: 1;
  min-width: 0;
}
footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}
.heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}
.heading p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 8px;
}
.eyebrow:empty,
.heading p:empty {
  display: none;
}
.eyebrow {
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #c9d0d6;
  border-radius: 5px;
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}
.button.primary {
  background: var(--orange);
  border-color: var(--orange);
  color: white;
}
.button.danger {
  color: #a32934;
  border-color: #e0b7bc;
}
.button:hover:not(:disabled) {
  filter: brightness(0.96);
}
.button.small {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 12px;
}
.full {
  width: 100%;
}
.icon-button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  border-radius: 4px;
}
.icon-button:hover {
  background: #e9edf0;
}
.text-button {
  padding: 0;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: inherit;
  text-align: left;
  line-height: inherit;
}
.back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0;
  color: var(--muted);
  font-size: 13px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 22px;
}
.onboarding {
  max-width: 460px;
  margin: 8px auto 24px;
}
.onboarding.kyc {
  max-width: 620px;
}
.onboarding h1 {
  margin-top: 22px;
}
.intro {
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 14px;
}
.onboarding-footer {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 12px;
}
.account-email {
  overflow-wrap: anywhere;
  color: var(--ink);
}
.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  padding: 0;
  margin: 0 0 38px;
  gap: 12px;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
  border-top: 2px solid var(--line);
  padding-top: 12px;
}
.steps li.reached {
  border-color: var(--orange);
}
.steps li[aria-current] {
  color: var(--ink);
  font-weight: 600;
}
.steps li > span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  background: var(--paper);
  border-radius: 50%;
  font-size: 11px;
}
.steps li > span svg {
  width: 14px;
}
.state-symbol {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 20px;
  color: var(--blue);
}
.state-symbol svg {
  width: 24px;
  height: 24px;
}
.password-field {
  display: flex;
  border: 1px solid #c5cdd4;
  border-radius: 4px;
}
.field .password-field input {
  border: 0;
  min-width: 0;
  background: none;
}
.password-field .icon-button {
  margin: 2px;
}
.receipt {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
  display: grid;
  gap: 20px;
}
.narrow {
  max-width: 700px;
  margin: 10px auto;
}
.upload {
  border: 1px dashed #bcc6cf;
  padding: 14px;
  border-radius: 5px;
  background: var(--paper);
  min-height: 112px;
}
.upload > span {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  margin-bottom: 12px;
}
.field .upload input {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 11px;
  min-height: 28px;
}
.upload img {
  width: 100%;
  height: 120px;
  object-fit: contain;
  margin-top: 12px;
}
.declaration {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.declaration h2 {
  font-size: 16px;
}
.declaration p {
  font-size: 12px;
  color: var(--muted);
  margin: 12px 0 18px;
}
.consents {
  display: grid;
  gap: 15px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
  font-size: 13px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #c5cdd4;
  padding: 11px 12px;
  border-radius: 4px;
  background: white;
  color: var(--ink);
}
.field input[readonly] {
  background: var(--paper);
  color: var(--muted);
}
.field textarea {
  min-height: 94px;
  resize: vertical;
  line-height: 1.5;
}
.field small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.span-2 {
  grid-column: 1/-1;
}
.check {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.6;
  font-size: 12px;
}
.check input {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
  accent-color: var(--orange);
}
.form-error {
  color: #a32934;
  font-size: 12px;
  line-height: 1.5;
}
.form-error:empty {
  display: none;
}
.form-actions {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.form-actions p {
  font-size: 11px;
  color: var(--muted);
}
.badge {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  border-radius: 4px;
  font-size: 11px;
  padding: 5px 8px;
  background: #eff1f3;
  color: #505a64;
}
.badge.submitted,
.badge.account-pending,
.badge.account-correction {
  background: #fff2df;
  color: #8e5811;
}
.badge.reviewing,
.badge.account-unverified,
.badge.account-incomplete {
  background: #eaf1fb;
  color: var(--blue);
}
.badge.quoted,
.badge.account-active {
  background: #e9f4ed;
  color: var(--green);
}
.badge.cancelled,
.badge.account-suspended {
  background: #fbecef;
  color: #a32934;
}
.badge.closed,
.badge.account-closed {
  background: #eff1f3;
  color: #505a64;
}
.toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}
.tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
}
.tabs button {
  font-size: 12px;
  padding: 9px 10px;
  border-radius: 4px;
}
.tabs button.selected {
  color: var(--ink);
  background: #edf0f3;
  font-weight: 600;
}
.search {
  max-width: 240px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 5px;
}
.search input {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 12px;
}
.search svg {
  color: var(--muted);
  width: 16px;
}
.table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13px;
}
th {
  text-align: left;
  background: var(--paper);
  color: var(--muted);
  font-weight: 500;
  font-size: 11px;
  padding: 14px 16px;
  white-space: nowrap;
}
td {
  padding: 20px 16px;
  border-top: 1px solid var(--line);
}
td small {
  display: block;
  color: var(--muted);
  margin-top: 6px;
  font-size: 11px;
}
td .ticket-id {
  font-family: monospace;
  font-size: 12px;
  color: var(--blue);
  text-decoration: underline;
  padding: 0;
}
td.amount {
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.table-footer {
  font-size: 11px;
  color: var(--muted);
  margin-top: 15px;
}
.empty {
  text-align: center;
  padding: 50px 20px;
  color: var(--muted);
}
.empty svg {
  width: 28px;
  height: 28px;
  margin-bottom: 14px;
}
.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 48px;
}
.data-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.datum {
  min-width: 0;
}
.datum span {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 8px;
}
.datum strong {
  font-size: 14px;
  font-weight: 500;
  overflow-wrap: anywhere;
}
.datum.big strong {
  font-size: 24px;
  font-variant-numeric: tabular-nums;
}
.dossier-section {
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.dossier-section > h2 {
  margin-bottom: 24px;
}
.document-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 24px;
}
.document-grid figure {
  margin: 0;
  min-width: 0;
}
.document-grid figcaption {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 10px;
}
.document {
  width: 100%;
  aspect-ratio: 1.6;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.document img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
}
.full-document {
  width: 100%;
  max-height: 65vh;
  object-fit: contain;
}
.source-detail {
  font-size: 13px;
  margin-top: 14px;
  overflow-wrap: anywhere;
}
.timeline {
  list-style: none;
  margin: 24px 0;
  padding: 0;
}
.timeline li {
  position: relative;
  border-left: 1px solid var(--line);
  padding: 0 0 22px 18px;
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
.timeline li:before {
  content: "";
  position: absolute;
  top: 4px;
  left: -4px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #8796a3;
}
.timeline small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}
.separator {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}
.notice {
  border-left: 3px solid #c58e32;
  padding: 12px 14px;
  background: #fff8eb;
  color: #745418;
  font-size: 12px;
  line-height: 1.6;
  margin: 20px 0;
}
.estimate {
  margin: 24px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.estimate h2 {
  font-size: 16px;
}
.estimate p {
  font-size: 12px;
}
.ticket-card .estimate-net {
  font-size: 14px;
}
.panel {
  padding: 0 0 28px;
  background: white;
  border-bottom: 1px solid var(--line);
}
.panel + .panel {
  margin-top: 28px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.customer-workspace {
  max-width: 600px;
  margin: 0 auto;
}
.request-fields {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 16px;
}
.amount-hint {
  grid-column: 1 / -1;
  font-size: 11px;
  color: var(--muted);
  margin-top: -8px;
}
#estimate-preview {
  margin: 22px 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.customer-estimate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 16px;
  min-height: 38px;
  font-size: 13px;
}
.customer-estimate strong {
  color: var(--green);
  font-size: 28px;
  font-variant-numeric: tabular-nums;
}
.customer-estimate .pending-estimate {
  font-size: 14px;
  color: var(--muted);
}
.estimate-note {
  margin-top: 5px;
  font-size: 12px;
  color: var(--muted);
}
.cost-details summary {
  color: var(--blue);
  padding: 12px 0;
  cursor: pointer;
  font-size: 12px;
  min-height: 44px;
}
.cost-details .info-list {
  margin: 0 0 12px;
}
.request-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  text-align: center;
}
.request-actions .button {
  min-height: 46px;
}
.request-actions p {
  font-size: 11px;
  color: var(--muted);
}
.customer-history {
  border-top: 1px solid var(--line);
  margin-top: 32px;
  padding-top: 24px;
}
.customer-history .section-title {
  margin-bottom: 0;
}
.customer-history h2 {
  font-size: 16px;
}
.availability-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  margin-bottom: 28px;
  font-size: 12px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}
.dot.off {
  background: #a32934;
}
.ticket-card {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.ticket-card .row {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ticket-card strong {
  font-size: 22px;
  font-weight: 500;
}
.ticket-card p {
  font-size: 12px;
  margin: 8px 0;
  color: var(--muted);
}
.ticket-card .button {
  margin-top: 14px;
}
.empty-message {
  font-size: 13px;
  color: var(--muted);
  padding: 18px 0;
}
.info-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
  font-size: 12px;
}
.info-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.info-list li span {
  color: var(--muted);
}
.quote-total {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}
.quote-total small {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}
.quote-total strong {
  font-size: 26px;
  font-weight: 500;
  color: var(--green);
}
.invoice {
  padding: 24px 0;
}
.invoice-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.invoice dl {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 16px;
  font-size: 13px;
  margin: 24px 0;
}
.invoice dd {
  margin: 0;
  text-align: right;
  overflow-wrap: anywhere;
}
.invoice-total {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  font-size: 22px;
}
.alert-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.alert-item .content {
  flex: 1;
  min-width: 0;
}
.alert-item p {
  font-size: 13px;
  overflow-wrap: anywhere;
}
.alert-item small {
  color: var(--muted);
}
.notification-channel {
  display: inline-block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 11px;
}
.settings {
  max-width: 700px;
}
.setting-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.setting-row p {
  color: var(--muted);
  font-size: 12px;
  margin-top: 8px;
}
.switch {
  appearance: none;
  width: 44px;
  height: 25px;
  border-radius: 20px;
  background: #9aa6af;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
}
.switch:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 19px;
  height: 19px;
  background: white;
  border-radius: 50%;
}
.switch:checked {
  background: var(--green);
}
.switch:checked:after {
  transform: translateX(19px);
}
dialog {
  width: min(650px, calc(100vw - 28px));
  max-height: 90vh;
  overflow: auto;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 15px 55px #0002;
  color: var(--ink);
}
dialog::backdrop {
  background: #20262c66;
}
.dialog-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}
.legal h3 {
  margin: 24px 0 10px;
}
.legal p {
  font-size: 13px;
  color: var(--muted);
}
details {
  margin-top: 20px;
}
details p {
  font-size: 12px;
  margin-top: 12px;
}
summary {
  font-size: 12px;
  color: var(--blue);
  cursor: pointer;
}
pre {
  padding: 14px;
  background: var(--paper);
  overflow: auto;
  max-height: 280px;
  font-size: 11px;
}
.feedback-bar {
  width: 100%;
  max-width: 1168px;
  margin: 0 auto;
  min-height: 48px;
  padding: 10px 24px 0;
}
#toast {
  visibility: hidden;
  color: var(--green);
  font-size: 12px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}
#toast.visible {
  visibility: visible;
}
@media (max-width: 1000px) {
  .app-header {
    gap: 24px;
  }
  #session-label {
    display: none;
  }
  .detail-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .detail-aside {
    border-top: 1px solid var(--line);
    padding-top: 24px;
  }
  .toolbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .search {
    max-width: 100%;
  }
}
@media (max-width: 600px) {
  .pilot-bar {
    padding: 10px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    font-size: 11px;
  }
  .demo-controls {
    width: 100%;
    justify-content: space-between;
  }
  .app-header {
    padding: 16px;
    flex-wrap: wrap;
    gap: 12px;
  }
  .brand strong {
    font-size: 17px;
  }
  #navigation {
    width: 100%;
    flex-basis: 100%;
    gap: 8px;
  }
  .nav {
    font-size: 12px;
    padding: 10px 5px;
  }
  main {
    padding: 26px 18px 40px;
  }
  .onboarding {
    margin-top: 0;
  }
  .onboarding h1 {
    font-size: 25px;
  }
  .steps {
    margin-bottom: 28px;
    gap: 8px;
  }
  .steps li {
    gap: 5px;
    font-size: 11px;
  }
  .heading {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  h1 {
    font-size: 24px;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .span-2 {
    grid-column: auto;
  }
  .data-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .document-grid {
    gap: 12px;
  }
  .form-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .actions {
    gap: 12px;
  }
  .actions .button {
    width: 100%;
  }
  .availability-strip {
    flex-wrap: wrap;
  }
  .availability-strip .muted {
    display: none;
  }
  .quote-total {
    flex-wrap: wrap;
  }
  .alert-item {
    flex-wrap: wrap;
  }
  .alert-item .button {
    margin-left: 34px;
  }
  .info-list li {
    flex-wrap: wrap;
  }
  th,
  td {
    padding: 14px 12px;
  }
  .tabs button {
    padding: 9px 8px;
  }
  footer {
    flex-direction: column;
    padding: 18px;
  }
  .state-symbol {
    margin-top: 16px;
  }
  dialog {
    padding: 20px;
  }
  .dialog-header h2 {
    font-size: 17px;
  }
  .receipt {
    gap: 18px;
  }
  .ticket-card .row {
    flex-wrap: wrap;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
