:root {
  --ink: #071832;
  --muted: #61708a;
  --line: #d9e3f2;
  --soft: #f5f8fd;
  --panel: #ffffff;
  --brand: #0647a8;
  --brand-strong: #05377f;
  --brand-soft: #eaf2ff;
  --navy: #06152f;
  --accent: #f42645;
  --ok: #167248;
  --warn: #9b6b08;
  --bad: #a83232;
  --shadow: 0 18px 48px rgba(7, 24, 50, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--soft);
  font-family: "Inter", "Plus Jakarta Sans", "DM Sans", sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

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

button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: var(--brand);
  padding: 0 16px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

button:hover {
  background: var(--brand-strong);
  box-shadow: 0 10px 24px rgba(6, 71, 168, 0.18);
  transform: translateY(-1px);
}

button.secondary {
  color: var(--brand);
  background: var(--brand-soft);
  border: 1px solid #c9dcfb;
}

button.compact-button {
  min-height: 30px;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 12px;
}

button.danger {
  background: var(--bad);
}

button.ghost-button {
  color: var(--ink);
  background: #edf1f5;
  width: 100%;
}
.nav-group { display:block; padding:18px 12px 6px; color:#91a3bd; font-size:10px; font-weight:800; letter-spacing:.12em; text-transform:uppercase; }
.integration-category { margin:24px 0; }
.provider-card { min-width:0; background:#fff; border:1px solid var(--line); border-radius:14px; padding:18px; display:grid; gap:12px; box-shadow:0 8px 24px rgba(7,24,50,.06); }
.provider-card small { color:var(--muted); display:block; }
.checkbox-label { display:flex; align-items:center; gap:10px; }
.checkbox-label input { width:auto; }

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

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

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

h1,
h2,
h3 {
  font-family: "Sora", "Inter", sans-serif;
  letter-spacing: 0;
}

h1 {
  font-size: 24px;
  line-height: 1.2;
}

h2 {
  font-size: 18px;
  margin-bottom: 12px;
}

.hidden {
  display: none !important;
}

.login-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.entry-shell {
  min-height: 100vh;
  padding: 24px clamp(18px, 4vw, 54px) 0;
  display: grid;
  align-content: start;
  gap: clamp(28px, 4vw, 44px);
  background:
    linear-gradient(90deg, rgba(6, 71, 168, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 71, 168, 0.04) 1px, transparent 1px),
    #f7faff;
  background-size: 46px 46px;
}

.entry-header {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.entry-logo {
  width: min(248px, 62vw);
  height: auto;
  display: block;
}

.entry-header-action {
  white-space: nowrap;
}

.entry-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.entry-title-section {
  width: min(900px, 100%);
  margin: 6px auto 0;
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 12px;
}

.entry-kicker {
  color: var(--brand);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.entry-title-section h1 {
  max-width: 880px;
  font-size: clamp(36px, 6vw, 72px);
  line-height: 1.02;
  color: var(--navy);
}

.entry-title-section h2 {
  margin: 0;
  color: var(--brand);
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1.18;
}

.entry-title-section p:last-child {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.7;
}

.section-heading p,
.login-heading p {
  color: var(--muted);
  margin-top: 6px;
}

.entry-section,
.entry-flow,
.trust-strip {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading h2 {
  color: var(--navy);
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 0;
}

.entry-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.entry-app-card {
  min-height: 292px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 14px;
  box-shadow: 0 12px 34px rgba(7, 24, 50, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.entry-app-card:hover {
  transform: translateY(-4px);
  border-color: #b8cff5;
  box-shadow: 0 22px 54px rgba(7, 24, 50, 0.12);
}

.entry-icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
  font-size: 13px;
  box-shadow: inset 0 -10px 18px rgba(6, 71, 168, 0.36);
}

.entry-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.entry-app-card h3,
.new-customer-card h3 {
  font-size: 20px;
  color: var(--navy);
}

.entry-app-card p,
.new-customer-card p {
  color: var(--muted);
  line-height: 1.55;
}

.entry-app-card button {
  width: 100%;
}

.new-customer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.new-customer-card {
  min-height: 236px;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 12px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(7, 24, 50, 0.06);
}

.new-customer-card button {
  width: fit-content;
  min-width: 146px;
}

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

.choice-card:hover {
  background: #f8fbff;
  border-color: #b8cff5;
}

.choice-card {
  min-height: 166px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
  text-align: left;
}

.choice-card strong {
  color: var(--navy);
  font-size: 18px;
}

.choice-card span,
.choice-card small {
  color: var(--muted);
  line-height: 1.35;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 34px rgba(7, 24, 50, 0.06);
}

.trust-strip div {
  min-height: 58px;
  display: grid;
  align-items: center;
  padding: 12px 14px;
  border-radius: 14px;
  color: var(--navy);
  background: var(--brand-soft);
  text-align: center;
}

.entry-flow {
  max-width: 980px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.entry-detect-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto auto;
  gap: 12px;
  align-items: end;
  margin-top: 14px;
}

.entry-footer {
  margin: 8px calc(clamp(18px, 4vw, 54px) * -1) 0;
  padding: 40px clamp(18px, 4vw, 54px);
  color: #dce8fb;
  background: var(--navy);
  display: grid;
  grid-template-columns: minmax(240px, 1.6fr) repeat(4, minmax(130px, 1fr));
  gap: 28px;
}

.footer-logo {
  width: min(230px, 100%);
  display: block;
  margin-bottom: 14px;
}

.entry-footer h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 12px;
}

.entry-footer p {
  color: #b8c8e3;
  line-height: 1.6;
  margin-top: 7px;
}

.entry-footer a {
  color: #dce8fb;
  text-decoration: none;
}

.entry-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.legal-body {
  background:
    linear-gradient(90deg, rgba(6, 71, 168, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(6, 71, 168, 0.04) 1px, transparent 1px),
    #f7faff;
  background-size: 46px 46px;
}

.legal-shell {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 42px;
}

.legal-logo {
  width: min(220px, 58vw);
  display: block;
}

.legal-home-link {
  color: var(--brand);
  font-weight: 800;
  text-decoration: none;
}

.legal-home-link:hover {
  color: var(--brand-strong);
  text-decoration: underline;
}

.legal-hero {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.legal-hero h1 {
  max-width: 780px;
  color: var(--navy);
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.04;
}

.legal-hero p:last-child {
  color: var(--muted);
  font-weight: 700;
}

.legal-document {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.legal-document section {
  display: grid;
  gap: 10px;
}

.legal-document h2 {
  margin: 0;
  color: var(--navy);
}

.legal-document p {
  color: #30415c;
  line-height: 1.75;
}

.legal-document a {
  color: var(--brand);
  font-weight: 700;
}

@media (max-width: 1080px) {
  .entry-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .new-customer-grid,
  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

.login-panel {
  width: min(420px, 100%);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 18px 50px rgba(24, 39, 55, 0.12);
}

.wide-panel {
  width: min(640px, 100%);
}

.brand-logo {
  max-width: 220px;
  display: block;
  margin: 0 0 26px;
}

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

.sidebar {
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.side-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  border-radius: 8px;
}

nav {
  display: grid;
  gap: 6px;
  flex: 1;
}

.nav-button {
  color: var(--ink);
  background: transparent;
  text-align: left;
  border: 1px solid transparent;
}

.nav-button.active,
.nav-button:hover {
  background: #e8f3f3;
  border-color: #c8e1e1;
}

.workspace {
  min-width: 0;
  padding: 22px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  margin-bottom: 20px;
}

#tenantLine {
  color: var(--muted);
  margin-top: 4px;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 6px;
  padding: 8px 12px;
  white-space: nowrap;
}

.page {
  display: none;
}

.page.active {
  display: grid;
  gap: 18px;
}

.metric-grid,
.app-grid,
.report-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.metric,
.app-card,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.compact-heading {
  margin-bottom: 14px;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 14px;
}

.provider-card {
  min-height: 230px;
  display: grid;
  gap: 14px;
  align-content: space-between;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.provider-card.disabled {
  opacity: 0.72;
  background: #f7f9fc;
}

.provider-icon {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-weight: 800;
}

.provider-card h3 {
  margin-top: 10px;
}

.provider-card p {
  color: var(--muted);
  line-height: 1.55;
  margin-top: 6px;
}

.provider-card-meta,
.provider-actions,
.provider-form-actions,
.provider-help {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.provider-card-meta {
  justify-content: space-between;
}

.toggle-row {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.toggle-row input {
  width: auto;
  min-height: auto;
}

.provider-help {
  grid-column: 1 / -1;
  color: var(--muted);
}

.provider-help small {
  word-break: break-all;
}

.metric span {
  color: var(--muted);
  display: block;
}

.metric strong {
  display: block;
  font-size: 28px;
  margin-top: 8px;
}

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

.compact-list {
  display: grid;
  gap: 8px;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.list-row small,
.muted {
  color: var(--muted);
}

.captured-fields .list-row {
  align-items: flex-start;
}

.captured-fields strong {
  max-width: 190px;
  overflow-wrap: anywhere;
  text-align: right;
}

.row-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 11px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  background: #eef3f7;
  font-weight: 700;
}

.status {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: #edf1f5;
}

.status.healthy,
.status.qualified,
.status.paid,
.status.active,
.status.licensed {
  color: var(--ok);
  background: #e5f5ee;
}

.status.degraded,
.status.pending,
.status.trial,
.status.retrying {
  color: var(--warn);
  background: #fff5dc;
}

.status.offline,
.status.disabled {
  color: var(--bad);
  background: #fdeaea;
}

.form-grid,
.toolbar-form,
.settings-grid {
  display: grid;
  gap: 12px;
}

.permission-banner { padding:18px; border:1px solid #b9d5ff; border-radius:14px; background:#eef6ff; color:#0a2d5c; }
.permission-banner.pending { border-color:#f2cf80; background:#fff8e8; color:#664500; }
.permission-banner p { margin:6px 0 0; line-height:1.55; }
.meta-summary-grid,.webhook-health-grid,.review-list { display:grid; grid-template-columns:repeat(auto-fit,minmax(170px,1fr)); gap:10px; }
.meta-summary-grid>div,.webhook-health-grid>div,.review-list>div { padding:14px; border:1px solid var(--line); border-radius:12px; background:#fff; display:grid; gap:5px; min-width:0; }
.meta-summary-grid small,.webhook-health-grid small,.review-list small { color:var(--muted); }
.meta-summary-grid strong,.webhook-health-grid strong,.review-list strong { overflow-wrap:anywhere; }
.meta-stepper { display:grid; grid-template-columns:repeat(4,1fr); gap:6px; padding:6px; border-radius:14px; background:#eef2f8; overflow:hidden; }
.meta-stepper button { border:0; background:transparent; color:#5c6c82; min-width:0; padding:10px 6px; display:flex; justify-content:center; align-items:center; gap:7px; font-size:12px; }
.meta-stepper button span { width:24px; height:24px; border-radius:50%; background:#d9e1ec; display:grid; place-items:center; flex:0 0 auto; }
.meta-stepper button.active { background:#fff; color:#073c86; box-shadow:0 4px 12px rgba(7,24,50,.08); }
.meta-stepper button.active span,.meta-stepper button.complete span { background:#1266d6; color:#fff; }
.wizard-toolbar,.wizard-actions { display:flex; align-items:center; justify-content:space-between; gap:16px; }
.wizard-toolbar h3 { margin:0 0 4px; }
.wizard-toolbar input { max-width:310px; }
.wizard-actions span { flex:1; }
.meta-choice-list { display:grid; gap:9px; min-height:170px; align-content:start; }
.meta-choice { width:100%; display:grid; grid-template-columns:32px 1fr auto; align-items:center; gap:12px; text-align:left; padding:14px; border:1px solid var(--line); border-radius:12px; background:#fff; color:var(--navy); }
.meta-choice:hover { border-color:#8cb9f3; background:#f8fbff; }
.meta-choice.selected { border-color:#1266d6; background:#eef6ff; }
.choice-control { width:26px; height:26px; border:2px solid #a9b7c9; border-radius:7px; display:grid; place-items:center; color:#fff; }
.meta-choice.selected .choice-control { border-color:#1266d6; background:#1266d6; }
.meta-choice small { color:var(--muted); }
.empty-state { text-align:center; padding:30px 18px; border:1px dashed #b9c5d5; border-radius:12px; color:var(--muted); }

@media (max-width:720px) {
  .meta-stepper { grid-template-columns:repeat(4,minmax(64px,1fr)); overflow-x:auto; }
  .meta-stepper button { flex-direction:column; font-size:10px; }
  .wizard-toolbar { align-items:stretch; flex-direction:column; }
  .wizard-toolbar input { max-width:none; width:100%; }
  .meta-choice { grid-template-columns:30px 1fr; }
  .meta-choice small { grid-column:2; }
}

.settings-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.field-help {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.help-icon {
  width: 16px;
  height: 16px;
  display: inline-grid;
  place-items: center;
  margin-right: 5px;
  border-radius: 50%;
  color: #fff;
  background: var(--brand);
  font-size: 11px;
  font-weight: 800;
}

.info-note {
  grid-column: 1 / -1;
  padding: 10px 12px;
  border: 1px solid #b9d5ff;
  border-radius: 6px;
  color: #0a2d5c;
  background: #eef6ff;
}

.toolbar-form {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  align-items: end;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.error-text {
  color: var(--bad);
  min-height: 20px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 360px;
  background: var(--ink);
  color: #fff;
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 14px 42px rgba(0, 0, 0, 0.22);
}

.chat-shell {
  display: grid;
  grid-template-columns: minmax(240px, 340px) minmax(0, 1fr);
  gap: 16px;
  min-height: 620px;
}

.chat-list,
.chat-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.chat-item {
  width: 100%;
  display: block;
  color: var(--ink);
  background: #fff;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  text-align: left;
  padding: 12px;
}

.chat-item.active,
.chat-item:hover {
  background: #e8f3f3;
}

.chat-detail {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 470px;
  max-height: 560px;
  overflow-y: auto;
  padding: 14px;
}

.message-row {
  max-width: min(72%, 640px);
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f6f8fb;
}

.message-row.outbound {
  justify-self: end;
  background: #e8f3f3;
  border-color: #c8e1e1;
}

.message-row small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

.chat-lead-form,
.chat-reply-form {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 10px;
  padding: 12px;
  border-top: 1px solid var(--line);
}

.lead-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 16px;
}

.lead-actions {
  margin: 12px 0;
}

.email-draft {
  display: grid;
  gap: 10px;
  margin: 12px 0;
}

.email-draft label {
  display: grid;
  gap: 6px;
}

.email-draft textarea {
  min-height: 180px;
  resize: vertical;
}

.kanban-board {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 14px;
  overflow-x: auto;
}

.kanban-column {
  min-height: 420px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.kanban-card {
  display: block;
  width: 100%;
  color: var(--ink);
  background: #f7f9fc;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px;
  margin-top: 10px;
  text-align: left;
}

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

  .sidebar {
    position: static;
    height: auto;
    flex-direction: row;
    align-items: center;
    overflow-x: auto;
  }

  nav {
    grid-auto-flow: column;
    grid-auto-columns: max-content;
  }

  .ghost-button {
    width: auto;
  }

  .topbar,
  .split-grid,
  .lead-workspace,
  .chat-shell,
  .chat-lead-form,
  .chat-reply-form,
  .entry-detect-grid {
    grid-template-columns: 1fr;
  }

  .entry-shell {
    padding: 18px 16px 0;
  }

  .entry-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .entry-header-action {
    width: 100%;
  }

  .entry-header-actions {
    width: 100%;
  }

  .entry-title-section {
    text-align: left;
    justify-items: start;
  }

  .entry-app-grid,
  .new-customer-grid,
  .choice-grid,
  .trust-strip,
  .entry-footer {
    grid-template-columns: 1fr;
  }

  .entry-app-card,
  .new-customer-card {
    min-height: 0;
  }

  .new-customer-card button {
    width: 100%;
  }

  .entry-footer {
    margin-left: -16px;
    margin-right: -16px;
    padding: 32px 16px;
  }

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