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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1e293b;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  min-height: 100vh;
  min-height: 100dvh;
  -webkit-font-smoothing: antialiased;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

a { color: #2563eb; text-decoration: none; }
@media (hover: hover) {
  a:hover { text-decoration: underline; }
}

/* Nav */
.cp-nav {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 max(16px, env(safe-area-inset-left, 16px)) 0 max(16px, env(safe-area-inset-right, 16px));
  min-height: 56px;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: env(safe-area-inset-top, 0);
  gap: 8px;
}
.cp-nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  min-height: 44px;
  flex-shrink: 0;
}
.cp-nav-brand span { font-weight: 700; font-size: 17px; color: #0f172a; }
.cp-dot { display: inline-block; width: 6px; height: 6px; background: #b4202b; border-radius: 50%; margin-left: 2px; vertical-align: middle; }

.cp-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #475569;
  cursor: pointer;
  padding: 10px;
  margin: -6px -6px -6px 0;
  border-radius: 8px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.cp-nav-toggle:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}

.cp-nav-links { display: flex; gap: 8px; align-items: center; }
.cp-nav-link {
  font-size: 13px;
  font-weight: 500;
  color: #475569;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .cp-nav-link:hover { background: #f1f5f9; color: #0f172a; text-decoration: none; }
}

/* Main */
.cp-main {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 16px 40px;
  padding-left: max(16px, env(safe-area-inset-left, 16px));
  padding-right: max(16px, env(safe-area-inset-right, 16px));
}

.cp-hero { text-align: center; margin-bottom: 24px; }
.cp-badge {
  display: inline-block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.cp-hero h1 {
  font-size: clamp(1.375rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin-bottom: 10px;
  line-height: 1.2;
}
.cp-hero p {
  color: #64748b;
  font-size: clamp(14px, 3.5vw, 15px);
  line-height: 1.55;
  max-width: 520px;
  margin: 0 auto;
}

.cp-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}

.cp-policy-notice {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 10px;
  padding: 12px 14px;
  margin: 4px 0 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #92400e;
}
.cp-policy-notice strong { color: #78350f; }

.cp-account-banner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
  padding: 12px 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  font-size: 14px;
  color: #0c4a6e;
  line-height: 1.4;
}
.cp-account-banner strong {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0369a1;
}
.cp-account-banner-meta {
  font-size: 13px;
  color: #475569;
}

.cp-fieldset {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 14px 12px;
  margin-bottom: 16px;
}
.cp-fieldset legend {
  font-weight: 600;
  font-size: 13px;
  color: #475569;
  padding: 0 6px;
}
.cp-fieldset legend small { font-weight: 400; color: #94a3b8; }

.cp-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 12px;
}
.cp-row--cargo {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.cp-field--sm .cp-hint {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.35;
}

.cp-field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #334155;
  margin-bottom: 6px;
}
.req { color: #dc2626; }

/* 16px prevents iOS Safari zoom-on-focus */
.cp-field input,
.cp-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.cp-field textarea {
  min-height: 96px;
  resize: vertical;
}
.cp-field input:focus,
.cp-field textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

/* Standalone inputs (dashboard search, etc.) */
.cp-input {
  display: block;
  width: 100%;
  max-width: 420px;
  box-sizing: border-box;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
  vertical-align: middle;
}
input.cp-input[type="search"] {
  /* keep text vertically centered; hide ugly default search cancel on some WebKits until focus */
}
input.cp-input[type="search"]::-webkit-search-decoration,
input.cp-input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}
.cp-input::placeholder {
  color: #94a3b8;
  opacity: 1;
}
.cp-input:hover {
  border-color: #94a3b8;
}
.cp-input:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}
.cp-dash-toolbar {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}
.cp-dash-toolbar .cp-input {
  width: 100%;
  max-width: 420px;
}
@media (max-width: 720px) {
  .cp-dash-toolbar {
    padding: 14px 14px;
  }
  .cp-dash-toolbar .cp-input {
    max-width: none;
  }
}

.cp-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #64748b;
  min-height: 16px;
  line-height: 1.4;
  word-break: break-word;
}
.cp-hint.ok { color: #15803d; }

.cp-lane-preview {
  margin-top: 12px;
  padding: 12px 14px;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  border-radius: 10px;
  font-size: 13px;
  color: #0c4a6e;
  line-height: 1.5;
  word-break: break-word;
}
.cp-lane-preview-note {
  display: block;
  margin-top: 6px;
  color: #0369a1;
  font-size: 12px;
}

.cp-acc-list { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.cp-acc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  cursor: pointer;
  padding: 12px 10px;
  margin: 0 -10px;
  border-radius: 10px;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
}
.cp-acc-item:active { background: #f8fafc; }
.cp-acc-item input {
  width: 20px;
  height: 20px;
  min-height: 20px;
  flex-shrink: 0;
  accent-color: #b4202b;
  margin: 0;
}

.cp-honey { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.cp-error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}
.cp-success-banner {
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #047857;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 14px;
}

/* ── Team distribution list ── */
.cp-team-card { padding: 20px; }
.cp-team-primary {
  padding: 14px 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-team-primary-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
}
.cp-team-primary-note { font-size: 13px; color: #64748b; }
.cp-team-heading {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}
.cp-team-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cp-team-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
}
.cp-team-item-main { min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.cp-team-item-name { font-size: 14px; color: #0f172a; }
.cp-team-item-email { font-size: 13px; color: #64748b; word-break: break-all; }
.cp-team-empty { color: #64748b; font-size: 14px; margin: 0 0 20px; }
.cp-team-form { border-top: 1px solid #f1f5f9; padding-top: 20px; }
.cp-team-form .cp-field { margin-bottom: 12px; }
.cp-team-limit { font-size: 13px; color: #64748b; margin-top: 10px; }
.cp-team-authority-note {
  font-size: 12.5px;
  line-height: 1.5;
  color: #92400e;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 8px;
  padding: 10px 12px;
  margin: 0 0 14px;
}

.cp-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}
.cp-actions--center { align-items: stretch; }

.cp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
  min-height: 48px;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.cp-btn--block { width: 100%; }
.cp-btn--primary {
  background: #b4202b;
  color: #fff;
}
@media (hover: hover) {
  .cp-btn--primary:hover { background: #991b1b; text-decoration: none; color: #fff; }
}
.cp-btn--primary:active { background: #7f1d1d; }
.cp-btn--primary:disabled { opacity: 0.65; cursor: not-allowed; }
.cp-btn--ghost {
  background: transparent;
  color: #64748b;
  border: 1px solid #e2e8f0;
}
@media (hover: hover) {
  .cp-btn--ghost:hover { background: #f8fafc; text-decoration: none; color: #334155; }
}
.cp-btn--ghost:active { background: #f1f5f9; }

/* Success */
.cp-success { text-align: center; padding: 32px 18px; }
.cp-success-icon {
  width: 56px; height: 56px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  margin: 0 auto 16px;
}
.cp-success h2 { font-size: clamp(1.25rem, 4vw, 1.5rem); margin-bottom: 8px; color: #0f172a; }
.cp-success-lead { color: #64748b; font-size: 14px; }
.cp-success-ref {
  font-size: clamp(1.25rem, 6vw, 1.75rem);
  font-weight: 800;
  color: #b4202b;
  letter-spacing: -0.02em;
  margin: 8px 0 12px;
  word-break: break-all;
}
.cp-success-detail { color: #475569; font-size: 14px; margin-bottom: 12px; line-height: 1.45; }
.cp-success-note {
  color: #64748b;
  font-size: 13px;
  line-height: 1.55;
  max-width: 420px;
  margin: 0 auto 20px;
}

.cp-footer {
  text-align: center;
  padding: 20px 16px 28px;
  padding-bottom: max(28px, env(safe-area-inset-bottom, 28px));
  font-size: 12px;
  color: #94a3b8;
}

/* ── Tablet / small desktop: side-by-side actions optional ── */
@media (min-width: 520px) {
  .cp-main { padding: 32px 20px 48px; }
  .cp-card { padding: 28px 24px; }
  .cp-actions:not(.cp-actions--center) {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
  .cp-btn--block { width: auto; min-width: 180px; }
  .cp-actions--center .cp-btn--block { width: auto; min-width: 200px; }
}

/* ── Mobile nav + single-column fields ── */
@media (max-width: 680px) {
  .cp-nav { position: relative; flex-wrap: wrap; padding-bottom: 0; }
  .cp-nav-toggle { display: inline-flex; }
  .cp-nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 8px 0 12px;
    border-top: 1px solid #f1f5f9;
    margin-top: 4px;
  }
  .cp-nav-links.open { display: flex; }
  .cp-nav-link {
    width: 100%;
    font-size: 15px;
    padding: 12px 8px;
  }
  .cp-row,
  .cp-row--cargo { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 380px) {
  .cp-nav-brand span { font-size: 16px; }
  .cp-card { padding: 20px 14px; border-radius: 14px; }
  .cp-fieldset { padding: 14px 12px 10px; }
}

/* ── Nav: active link, user label, sign-out button ── */
.cp-nav-link.is-active {
  background: #fef2f2;
  color: #991b1b;
  font-weight: 600;
}
.cp-nav-user {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  padding: 10px 8px;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.cp-nav-btn {
  background: none;
  border: none;
  font: inherit;
  cursor: pointer;
  text-align: left;
  width: auto;
}
@media (max-width: 680px) {
  .cp-nav-user { display: none; }
  .cp-nav-btn { width: 100%; }
}

/* ── Wide main (dashboard) ── */
.cp-main--wide { max-width: none; width: 100%; }

/* ── Auth forms ── */
.cp-auth-card { max-width: 480px; margin: 0 auto; }
.cp-auth-card .cp-field { margin-bottom: 14px; }
.cp-auth-card .cp-field:first-of-type { margin-top: 0; }
.cp-auth-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
  text-align: center;
  font-size: 14px;
  color: #64748b;
}
.cp-auth-footer--inline {
  margin-top: 0;
  margin-bottom: 16px;
  padding-top: 0;
  border-top: none;
  text-align: left;
}

/* ── Dashboard header ── */
.cp-dash-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}
.cp-dash-header h1 {
  font-size: clamp(1.375rem, 4vw, 1.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 8px 0 4px;
  line-height: 1.2;
}
.cp-dash-sub {
  color: #64748b;
  font-size: 14px;
  margin: 0;
}
.cp-dash-panel {
  padding: 0;
  overflow: hidden;
}
.cp-dash-loading {
  padding: 32px 20px;
  text-align: center;
  color: #64748b;
  font-size: 14px;
}
.cp-dash-empty {
  text-align: center;
  padding: 40px 24px 36px;
}
.cp-dash-empty-icon {
  font-size: 40px;
  margin-bottom: 12px;
  line-height: 1;
}
.cp-dash-empty h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.cp-dash-empty p {
  color: #64748b;
  font-size: 14px;
  line-height: 1.55;
  max-width: 360px;
  margin: 0 auto 20px;
}

/* ── Dashboard table ── */
.cp-dash-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cp-dash-table {
  width: max-content;
  min-width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  table-layout: auto;
}
.cp-dash-table thead {
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}
.cp-dash-table th {
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  padding: 12px 16px;
  white-space: nowrap;
}
.cp-dash-table td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
  vertical-align: middle;
  white-space: nowrap;
}
.cp-dash-table tbody tr.cp-dash-row:last-of-type td,
.cp-dash-table tbody tr.cp-dash-detail-row:last-child td {
  border-bottom: none;
}
.cp-dash-table tbody tr.cp-dash-row:hover td {
  background: #fafbfc;
}
.cp-dash-actions { text-align: right; white-space: nowrap; }
.cp-dash-muted { color: #94a3b8; font-style: italic; white-space: nowrap; }
.cp-dash-route {
  white-space: normal;
  min-width: 180px;
}
.cp-dash-route-stack {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1.35;
}
.cp-dash-route-line {
  display: block;
  white-space: nowrap;
}
.cp-dash-route-line--dest::before {
  content: '→ ';
  color: #94a3b8;
  font-weight: 500;
}
.cp-dash-money { font-weight: 600; color: #0f172a; white-space: nowrap; }
.cp-dash-ref-link {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}
.cp-dash-ref-link:hover { color: #b4202b; text-decoration: underline; }
.cp-btn--sm {
  padding: 8px 14px;
  font-size: 13px;
  min-height: 36px;
}

/* Mobile quote cards (hidden on desktop) */
.cp-dash-mobile { display: none; }

.cp-dash-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}
.cp-dash-card-hit {
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.cp-dash-card-hit:active { background: #fafbfc; }
@media (hover: hover) {
  .cp-dash-card-hit:hover { background: #fafbfc; text-decoration: none; color: inherit; }
}
.cp-dash-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 14px 16px 10px;
}
.cp-dash-card-ref {
  font-size: 15px;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.01em;
}
.cp-dash-card-head .cp-status { flex-shrink: 0; }
.cp-dash-card-body {
  padding: 4px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-dash-card-stop {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cp-dash-card-city {
  font-size: 15px;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.35;
}
.cp-dash-card-zip {
  font-size: 12px;
  font-weight: 500;
  color: #94a3b8;
  letter-spacing: 0.02em;
}
.cp-dash-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0 12%, #e2e8f0 88%, transparent);
  margin: 2px 0;
}
.cp-dash-card-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 12px 16px 14px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
}
.cp-dash-card-foot-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cp-dash-card-foot-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.cp-dash-card-foot-val {
  font-size: 14px;
  font-weight: 600;
  color: #334155;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cp-dash-card-foot .cp-dash-money { font-size: 14px; }
.cp-dash-detail-row td {
  padding: 0 16px 14px;
  background: #f8fafc;
}
.cp-dash-detail {
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
}

/* ── Status badges ── */
.cp-status {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  white-space: nowrap;
}
.cp-status--requested { background: #dbeafe; color: #1d4ed8; }
.cp-status--draft { background: #f1f5f9; color: #475569; }
.cp-status--sent { background: #e0e7ff; color: #4338ca; }
.cp-status--viewed { background: #ede9fe; color: #6d28d9; }
.cp-status--approved { background: #dcfce7; color: #15803d; }
.cp-status--declined { background: #fee2e2; color: #b91c1c; }
.cp-status--countered { background: #fef3c7; color: #b45309; }
.cp-status--expired { background: #f1f5f9; color: #64748b; }
.cp-status--cancelled { background: #f1f5f9; color: #64748b; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── Dashboard responsive: quote cards on mobile ── */
@media (max-width: 720px) {
  .cp-dash-header {
    flex-direction: column;
    align-items: stretch;
  }
  .cp-dash-header .cp-btn { width: 100%; }
  .cp-main--wide {
    padding-left: 14px;
    padding-right: 14px;
  }
  .cp-dash-table-wrap {
    overflow: visible;
    padding: 12px 12px 16px;
    background: #f8fafc;
  }
  .cp-dash-table {
    width: 100%;
    min-width: 0;
    display: block;
  }
  .cp-dash-table thead { display: none; }
  .cp-dash-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .cp-dash-table tr.cp-dash-row {
    display: block;
    border: none;
    padding: 0;
    background: transparent;
  }
  .cp-dash-table tr.cp-dash-row:hover td {
    background: transparent;
  }
  .cp-dash-table tr.cp-dash-row td.cp-dash-desktop { display: none !important; }
  .cp-dash-table tr.cp-dash-row td.cp-dash-mobile {
    display: block;
    padding: 0;
    border: none;
    background: transparent;
  }
  .cp-dash-detail-row td {
    padding: 0;
    display: block;
    background: transparent;
  }
  .cp-dash-card {
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }
  .cp-dash-empty,
  .cp-dash-loading {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (min-width: 721px) {
  .cp-dash-mobile { display: none !important; }
  .cp-dash-desktop { display: table-cell; }
  .cp-dash-table tr.cp-dash-row .cp-dash-mobile { display: none !important; }
}

/* ── Quote detail page ── */
.cp-quote-page { max-width: 720px; }
.cp-quote-back { margin-bottom: 16px; }
.cp-link-back {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
@media (hover: hover) {
  .cp-link-back:hover { color: #2563eb; text-decoration: none; }
}
.cp-quote-loading {
  text-align: center;
  padding: 40px 20px;
  color: #64748b;
  font-size: 14px;
}
.cp-quote-root { display: flex; flex-direction: column; gap: 16px; }
.cp-quote-banner {
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  line-height: 1.45;
}
.cp-quote-banner--success {
  background: #dcfce7;
  border: 1px solid #bbf7d0;
  color: #15803d;
}
.cp-quote-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
}
.cp-quote-header h1 {
  font-size: clamp(1.5rem, 5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
  margin: 8px 0 4px;
  line-height: 1.15;
}
.cp-quote-meta {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
.cp-quote-status-badge { flex-shrink: 0; align-self: flex-start; }
.cp-quote-card { padding: 20px 18px; }
.cp-quote-section-title {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 14px;
}
.cp-quote-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}
.cp-quote-summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cp-quote-summary-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}
.cp-quote-summary-value {
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
  word-break: break-word;
}
.cp-quote-summary-item--highlight .cp-quote-summary-value {
  color: #b4202b;
  font-size: 1.125rem;
}
.cp-quote-note {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f1f5f9;
  font-size: 13px;
  line-height: 1.55;
  color: #475569;
}

/* Shipment tracking card */
.cp-shipment-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 18px;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
}
.cp-shipment-card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
}
.cp-shipment-card-header h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.cp-shipment-pro {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
}
.cp-shipment-pro-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
}
.cp-shipment-pro-value {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.cp-shipment-route {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  font-weight: 700;
  color: #334155;
}
.cp-shipment-arrow { color: #94a3b8; font-weight: 400; }
.cp-shipment-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
  margin: 0;
}
.cp-shipment-details div { min-width: 0; }
.cp-shipment-details dt {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  margin-bottom: 2px;
}
.cp-shipment-details dd {
  margin: 0;
  font-size: 14px;
  color: #334155;
  line-height: 1.4;
  word-break: break-word;
}

/* Action panels */
.cp-quote-panel {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 18px;
}
.cp-quote-panel h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.cp-quote-panel-lead {
  font-size: 14px;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
}
.cp-quote-panel--success {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.cp-quote-panel--success h2 { color: #15803d; }
.cp-quote-panel--success p { color: #166534; font-size: 14px; line-height: 1.5; margin: 0; }
.cp-quote-panel--info {
  background: #fffbeb;
  border-color: #fde68a;
}
.cp-quote-panel--info h2 { color: #b45309; }
.cp-quote-panel--info p { color: #92400e; font-size: 14px; line-height: 1.5; margin: 0; }
.cp-quote-panel--muted {
  background: #f8fafc;
  border-color: #e2e8f0;
}
.cp-quote-panel--muted p { color: #64748b; font-size: 14px; line-height: 1.5; margin: 0; }
.cp-quote-action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cp-quote-action-buttons--stack {
  flex-direction: column;
  align-items: stretch;
}
.cp-btn--danger {
  background: #dc2626;
  color: #fff;
}
@media (hover: hover) {
  .cp-btn--danger:hover { background: #b91c1c; color: #fff; text-decoration: none; }
}
.cp-decline-panel {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f5f9;
}
.cp-decline-reasons {
  border: none;
  padding: 0;
  margin: 0 0 14px;
}
.cp-decline-reasons legend {
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 10px;
  padding: 0;
}
.cp-decline-reason {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  padding: 8px 0;
  cursor: pointer;
  min-height: 44px;
}
.cp-decline-reason input {
  width: 18px;
  height: 18px;
  accent-color: #b4202b;
  flex-shrink: 0;
}
.cp-input-prefix {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cp-input-prefix span {
  font-size: 16px;
  font-weight: 600;
  color: #64748b;
}
.cp-input-prefix input {
  flex: 1;
}
.cp-rc-form .cp-field { margin-bottom: 14px; }
.cp-rc-form input[type="file"] {
  width: 100%;
  font-size: 14px;
  padding: 10px 0;
}

/* Shipment status badges (Echo lifecycle) */
.cp-status--sm {
  padding: 2px 8px;
  font-size: 11px;
}
.cp-status--ship-delivered { background: #dcfce7; color: #15803d; }
.cp-status--ship-in-transit { background: #dbeafe; color: #1d4ed8; }
.cp-status--ship-picking { background: #fef3c7; color: #b45309; }
.cp-status--ship-voided { background: #f1f5f9; color: #64748b; }
.cp-status--ship-unknown { background: #f1f5f9; color: #64748b; }

@media (max-width: 560px) {
  .cp-quote-summary-grid,
  .cp-shipment-details {
    grid-template-columns: 1fr;
  }
  .cp-quote-action-buttons .cp-btn { width: 100%; }
}


/* Quote detail page */
.cp-quote-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
  margin: 0;
}
.cp-quote-detail > div { min-width: 0; }
.cp-quote-detail dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cp-muted, #64748b);
  margin-bottom: 4px;
}
.cp-quote-detail dd {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--cp-text, #1e293b);
}
.cp-quote-detail--full { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .cp-quote-detail { grid-template-columns: 1fr; }
}


/* RC upload dropzone */
.cp-rc-dropzone {
  position: relative;
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  background: #f8fafc;
  padding: 28px 16px;
  text-align: center;
  cursor: pointer;
  margin-bottom: 14px;
  transition: border-color .15s ease, background .15s ease;
}
.cp-rc-dropzone:hover,
.cp-rc-dropzone:focus {
  border-color: #3b82f6;
  background: #eff6ff;
  outline: none;
}
.cp-rc-dropzone.is-dragover {
  border-color: #2563eb;
  background: #dbeafe;
}
.cp-rc-file-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 0;
}
.cp-rc-dropzone-inner {
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #475569;
}
.cp-rc-dropzone-inner strong {
  font-size: 15px;
  color: #1e293b;
}
.cp-rc-dropzone-inner span {
  font-size: 13px;
  color: #64748b;
}
.cp-rc-file-name {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 600;
  color: #1d4ed8;
  pointer-events: none;
}
.cp-rc-form .cp-field { margin-bottom: 14px; }


/* Customer pricing breakdown (freight + accessorials) */
.cp-quote-panel--pricing .cp-price-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cp-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 14px;
}
.cp-price-row:last-child { border-bottom: none; }
.cp-price-lbl { color: #64748b; }
.cp-price-amt { font-weight: 600; color: #1e293b; }
.cp-price-row--base .cp-price-amt { font-size: 16px; }
.cp-price-row--acc .cp-price-lbl { padding-left: 8px; font-size: 13px; }
.cp-price-row--acc .cp-price-amt { font-size: 13px; font-weight: 500; }
.cp-price-row--total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid #e2e8f0;
  border-bottom: none;
}
.cp-price-row--total .cp-price-lbl,
.cp-price-row--total .cp-price-amt {
  font-weight: 700;
  color: #0f172a;
  font-size: 15px;
}


/* Clickable PRO + details modal */
.cp-pro-link {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-weight: 700;
  color: #1d4ed8;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  min-height: 0;
}
.cp-pro-link:hover { color: #1e3a8a; }
.cp-pro-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
  border-radius: 4px;
}

body.cp-pro-modal-open { overflow: hidden; }
.cp-pro-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cp-pro-modal[hidden] { display: none !important; }
.cp-pro-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
}
.cp-pro-modal-sheet {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 560px;
  max-height: min(92vh, 820px);
  overflow: auto;
  background: #fff;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.2);
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 640px) {
  .cp-pro-modal {
    align-items: center;
    padding: 24px;
  }
  .cp-pro-modal-sheet {
    border-radius: 16px;
    max-height: min(88vh, 760px);
  }
}
.cp-pro-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px 12px;
  border-bottom: 1px solid #f1f5f9;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}
.cp-pro-modal-kicker {
  margin: 0 0 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #94a3b8;
}
.cp-pro-modal-head h2 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.cp-pro-modal-close {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 10px;
  background: #f1f5f9;
  color: #475569;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
}
.cp-pro-modal-close:hover { background: #e2e8f0; }
.cp-pro-modal-body { padding: 16px 20px 28px; }
.cp-pro-modal-loading {
  margin: 12px 0;
  color: #64748b;
  font-size: 14px;
  text-align: center;
}
.cp-pro-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 100%);
  border: 1px solid #dbeafe;
  border-radius: 12px;
  margin-bottom: 12px;
}
.cp-pro-hero-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #64748b;
  margin-bottom: 2px;
}
.cp-pro-hero-pro {
  font-size: 1.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.cp-pro-modal-quote {
  margin: 0 0 12px;
  font-size: 13px;
  color: #64748b;
}
.cp-pro-modal-quote a { color: #1d4ed8; font-weight: 600; }
.cp-pro-bol {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 10px 14px;
  background: #f8fafc;
  border-radius: 10px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}
.cp-pro-bol strong { color: #0f172a; font-size: 15px; }
.cp-pro-lane {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 16px;
}
.cp-pro-party {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  min-width: 0;
}
.cp-pro-party-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 4px;
}
.cp-pro-party strong {
  display: block;
  font-size: 13px;
  color: #1e293b;
  line-height: 1.4;
  word-break: break-word;
}
.cp-pro-term {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
}
.cp-pro-lane-arrow {
  align-self: center;
  color: #94a3b8;
  font-size: 18px;
  font-weight: 700;
}
.cp-pro-section { margin-top: 8px; margin-bottom: 8px; }
.cp-pro-section h3 {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.cp-pro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 14px;
  margin: 0;
}
.cp-pro-grid dt {
  font-size: 11px;
  color: #94a3b8;
  margin: 0 0 2px;
}
.cp-pro-grid dd {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
}
@media (max-width: 420px) {
  .cp-pro-lane {
    grid-template-columns: 1fr;
  }
  .cp-pro-lane-arrow { display: none; }
}

/* PRO modal — enriched shipment detail */
@media (min-width: 640px) {
  .cp-pro-modal-sheet {
    max-width: 640px;
  }
}
.cp-pro-delivery-status {
  margin: -4px 0 12px;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
}
.cp-pro-party--ship {
  background: #f0f9ff;
  border-color: #bfdbfe;
}
.cp-pro-party--cons {
  background: #f0fdf4;
  border-color: #bbf7d0;
}
.cp-pro-party-name {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.35;
  margin-bottom: 4px;
}
.cp-pro-party-addr,
.cp-pro-party-loc {
  display: block;
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
  word-break: break-word;
}
.cp-pro-timeline-block {
  margin-bottom: 12px;
  padding: 12px;
  background: #f8fafc;
  border-radius: 10px;
}
.cp-pro-timeline-block:last-child { margin-bottom: 0; }
.cp-pro-timeline-block h4 {
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}
.cp-pro-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}
.cp-pro-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  min-width: 420px;
}
.cp-pro-table th,
.cp-pro-table td {
  padding: 8px 10px;
  text-align: left;
  border-bottom: 1px solid #f1f5f9;
  color: #334155;
}
.cp-pro-table th {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #94a3b8;
  background: #f8fafc;
  font-weight: 700;
}
.cp-pro-table tbody tr:last-child td { border-bottom: none; }
.cp-pro-table .cp-pro-num,
.cp-pro-table th.cp-pro-num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.cp-pro-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cp-pro-chip {
  display: inline-block;
  padding: 6px 12px;
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

/* ─────────────────────────────────────────────
   Transit Calculator (portal/transit.php)
   ───────────────────────────────────────────── */
.cp-transit { padding: 22px 18px 20px; }

.cp-transit-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 20px;
}
@media (max-width: 720px) {
  .cp-transit-form { grid-template-columns: 1fr; gap: 14px; }
}

.cp-transit-city {
  margin-top: 6px;
  min-height: 16px;
  font-size: 12px;
  font-weight: 600;
  color: #2563eb;
}
.cp-transit-city[data-state="loading"] { color: #94a3b8; font-weight: 500; }
.cp-transit-city[data-state="error"] { color: #b4202b; }

.cp-transit-datebtns {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cp-transit-datebtn {
  flex: 1 1 auto;
  min-height: 38px;
  padding: 6px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: #f8fafc;
  color: #334155;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
  -webkit-tap-highlight-color: transparent;
}
@media (hover: hover) {
  .cp-transit-datebtn:hover { background: #eef2f7; border-color: #94a3b8; }
}
.cp-transit-datebtn:active { background: #e2e8f0; }

.cp-transit-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
@media (max-width: 560px) { .cp-transit-results { grid-template-columns: 1fr; } }

.cp-transit-tile {
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 14px 16px;
  background: #f8fafc;
}
.cp-transit-tile--accent {
  background: linear-gradient(135deg, #fef2f2 0%, #fff 70%);
  border-color: #fecaca;
}
.cp-transit-tile h4 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #64748b;
}

.cp-transit-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 0;
  font-size: 14px;
  color: #475569;
}
.cp-transit-row--total {
  border-top: 1px solid #e2e8f0;
  margin-top: 6px;
  padding-top: 10px;
  font-weight: 700;
  color: #0f172a;
}
.cp-transit-val { font-weight: 700; color: #0f172a; text-align: right; }

.cp-transit-center {
  font-size: 15px;
  font-weight: 600;
  color: #334155;
  line-height: 1.45;
}
.cp-transit-center--big {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #b4202b;
}

.cp-transit-empty {
  text-align: center;
  padding: 26px 12px;
}
.cp-transit-empty-title {
  font-size: 15px;
  font-weight: 700;
  color: #b4202b;
  margin-bottom: 4px;
}
.cp-transit-empty-sub { font-size: 13px; color: #64748b; }

.cp-transit-actions {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 18px;
}

.cp-transit-note {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: #94a3b8;
}

#tc-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(12px);
  background: #0f172a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.28);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 1000;
}
#tc-toast.is-show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Transit date buttons: keep on one even row */
.cp-transit-datebtns { display: grid; grid-template-columns: auto 1fr 1fr auto; gap: 6px; }
