:root {
  --ink: #112b40;
  --muted: #5d6f7e;
  --navy: #0a426d;
  --quickbooks: #176b92;
  --quickbooks-blue: #2ca7d7;
  --quickbooks-sky: #d9edf6;
  --quickbooks-mint: #f4f0de;
  --card: #ffffff;
  --line: rgba(10, 66, 109, 0.12);
  --shadow: 0 20px 48px rgba(10, 66, 109, 0.14);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Space Grotesk", "IBM Plex Sans", "Sora", "Manrope", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(920px 580px at 8% -8%, rgba(44, 167, 215, 0.20) 0%, rgba(44, 167, 215, 0.08) 38%, transparent 66%),
    radial-gradient(900px 560px at 92% 0%, rgba(10, 66, 109, 0.16) 0%, rgba(10, 66, 109, 0.06) 42%, transparent 72%),
    linear-gradient(180deg, #f8fbfd 0%, #eef6fa 52%, #f7f3e7 100%);
}

html.customer-auth-checking body[data-requires-auth="1"] > * {
  visibility: hidden;
}

main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}

.topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.header-home {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 271px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.header-nav,
.nav {
  display: none;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-left: auto;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.header-tools.is-nav-stacked .header-nav,
.header-tools.is-nav-stacked .nav {
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  text-align: right;
}

.header-tools > .lang-select {
  order: -2;
}

.header-tools > .nav-auth {
  order: -1;
}

.customer-authenticated .header-nav {
  display: flex;
}

.customer-authenticated .nav {
  display: flex;
}

.topline a,
.footer-links a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.topline a:hover,
.footer-links a:hover {
  text-decoration: underline;
}

.header-nav a.is-current-page,
.nav a.is-current-page {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.subtabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.subtab {
  appearance: none;
  border: 1px solid rgba(10, 66, 109, 0.14);
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  border-radius: 999px;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
}

.subtab:hover {
  background: rgba(44, 167, 215, 0.12);
  text-decoration: none;
}

.subtab.is-active {
  background: var(--quickbooks-sky);
  border-color: rgba(44, 167, 215, 0.34);
}

.subtab-bar,
.payroll-tab-bar {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(10, 66, 109, 0.09);
  margin-bottom: 16px;
  padding: 14px 18px;
  min-width: 0;
}

.subtab-bar .subtabs,
.payroll-tab-bar .subtabs {
  margin-top: 0;
}

.lang-select {
  border: 1px solid rgba(10, 66, 109, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--navy);
  border-radius: 999px;
  padding: 8px 12px;
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-auth {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(10, 66, 109, 0.16);
  background: rgba(255, 255, 255, 0.85);
  color: var(--navy);
  text-decoration: none;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.nav-auth:hover {
  text-decoration: none;
  background: rgba(44, 167, 215, 0.14);
  border-color: rgba(44, 167, 215, 0.32);
  transform: translateY(-1px);
}

.nav-auth.is-active {
  background: rgba(44, 167, 215, 0.16);
  border-color: rgba(44, 167, 215, 0.3);
}

.nav-auth-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-auth-icon.is-filled svg {
  fill: currentColor;
  stroke: none;
}

.hero,
.section,
.card,
.callout {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  min-width: 0;
}

.hero,
.section,
.callout {
  padding: 30px;
  margin-bottom: 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 22px;
  align-items: center;
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.hero-panel {
  background: linear-gradient(150deg, rgba(44, 167, 215, 0.12), rgba(244, 240, 222, 0.74));
  border: 1px solid rgba(10, 66, 109, 0.12);
  border-radius: 18px;
  padding: 22px;
}

.hero-panel h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.hero-proof-item {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(11, 31, 51, 0.1);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--quickbooks);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0 0 14px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 10px;
  font-size: 19px;
}

.lead,
p,
li {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

p,
ul {
  margin: 0 0 14px;
}

ul {
  padding-left: 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.pagination-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.cta,
.ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
}

.button-reset {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.cta {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--quickbooks-blue));
  box-shadow: 0 14px 30px rgba(10, 66, 109, 0.28);
}

.ghost {
  color: var(--navy);
  border: 1px solid rgba(10, 66, 109, 0.18);
  background: rgba(255, 255, 255, 0.76);
}

.icon-button {
  min-width: 46px;
  min-height: 46px;
  padding: 0;
  font-size: 22px;
  line-height: 1;
}

.inline-delete-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  font-size: 0;
  line-height: 1;
  color: #8a2131;
  border-color: rgba(138, 33, 49, 0.22);
}

.inline-delete-button svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

.inline-delete-button:hover {
  background: rgba(138, 33, 49, 0.08);
}

.bill-toast-stack {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100vw - 32px));
  pointer-events: none;
}

.bill-toast {
  display: grid;
  gap: 5px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(10, 66, 109, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 16px 36px rgba(10, 66, 109, 0.18);
  color: var(--muted);
  font: inherit;
  line-height: 1.35;
  text-align: left;
  pointer-events: auto;
  cursor: pointer;
  animation: bill-toast-enter 180ms ease-out;
}

.bill-toast strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
}

.bill-toast .status-pill {
  margin-top: 2px;
}

.bill-toast-eyebrow {
  color: var(--navy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.bill-toast.is-leaving {
  animation: bill-toast-leave 180ms ease-in forwards;
}

@keyframes bill-toast-enter {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bill-toast-leave {
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

.inline-send-button {
  min-width: 56px;
  min-height: 34px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 800;
  color: var(--quickbooks-blue);
  border-color: rgba(44, 167, 215, 0.28);
}

.inline-send-button:hover:not(:disabled) {
  background: rgba(44, 167, 215, 0.10);
}

.inline-send-button:disabled {
  cursor: not-allowed;
  color: var(--muted);
  opacity: 0.72;
}

.row-action-cell {
  width: 106px;
  text-align: right;
  white-space: nowrap;
}

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

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

.feature-list,
.callout-points {
  display: grid;
  gap: 16px;
}

.section-head,
.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.bills-toolbar {
  flex-wrap: wrap;
}

.bills-toolbar .text-input {
  min-width: 0;
  flex: 1 1 0;
}

.bills-toolbar #tenant-filter {
  flex-basis: 220px;
}

.bills-toolbar .bill-search-input {
  flex-basis: 360px;
}

.bills-toolbar .icon-button {
  flex: 0 0 auto;
}

.inline-field {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  white-space: nowrap;
}

.inline-field .text-input {
  width: auto;
  min-width: 190px;
}

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

.field {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.field[hidden],
[hidden] {
  display: none !important;
}

.field span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.required-mark {
  color: #b42318;
}

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

.notification-recipient-list {
  display: grid;
  gap: 10px;
}

.notification-recipient-row {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(160px, 0.7fr) auto;
  gap: 10px;
  align-items: center;
}

.small-textarea {
  min-height: 150px;
}

.muted-inline {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.field-error {
  border-color: #b42318;
  box-shadow: 0 0 0 3px rgba(180, 35, 24, 0.12);
}

.dashboard-cards .card {
  min-height: 156px;
}

.metric {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
}

.metric-small {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.3;
  font-weight: 800;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.status-pill.success {
  color: #0f5879;
  background: rgba(44, 167, 215, 0.16);
}

.status-pill.info {
  color: var(--navy);
  background: rgba(10, 66, 109, 0.10);
}

.status-pill.warning {
  color: #8a4b00;
  background: rgba(224, 152, 42, 0.18);
}

.status-link {
  display: inline-flex;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.status-link:hover {
  text-decoration: underline;
}

.status-link .status-pill {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.table-wrap {
  overflow-x: auto;
  max-width: 100%;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  max-width: 100%;
}

.data-table th,
.data-table td {
  text-align: left;
  vertical-align: top;
  padding: 14px 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.data-table thead th {
  border-top: 0;
  color: var(--navy);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.data-table .issued-date-column {
  width: 116px;
  min-width: 116px;
  white-space: nowrap;
}

.text-input {
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 13px 16px;
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 51, 0.2);
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font: inherit;
}

.compact-select {
  min-width: 220px;
}

.xml-textarea {
  width: 100%;
  min-height: 420px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(11, 31, 51, 0.2);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-family: "IBM Plex Mono", "SFMono-Regular", "SF Mono", Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
  resize: vertical;
}

.api-ref-list {
  display: grid;
  gap: 18px;
}

.api-endpoint {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 28px;
}

.api-endpoint-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.api-method {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 74px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--quickbooks-blue);
}

.api-method.post {
  background: var(--quickbooks);
}

.api-path {
  font-family: "IBM Plex Mono", "SFMono-Regular", "SF Mono", Consolas, monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  word-break: break-word;
}

.api-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0;
}

.api-meta-card {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(44, 167, 215, 0.08), rgba(244, 240, 222, 0.78));
  border: 1px solid rgba(10, 66, 109, 0.08);
}

.api-meta-card strong,
.api-section strong {
  color: var(--navy);
}

.api-section {
  margin-top: 18px;
}

.api-section h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.api-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
}

.api-table th,
.api-table td {
  text-align: left;
  vertical-align: top;
  padding: 12px 14px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.5;
}

.api-table thead th {
  border-top: none;
  background: rgba(44, 167, 215, 0.10);
  color: var(--navy);
  font-weight: 800;
}

.api-table code,
.code-block code,
.inline-code {
  font-family: "IBM Plex Mono", "SFMono-Regular", "SF Mono", Consolas, monospace;
}

.code-block {
  margin: 0;
  padding: 16px 18px;
  border-radius: 18px;
  background: #0d1624;
  color: #f3f8ff;
  overflow-x: auto;
  border: 1px solid rgba(11, 31, 51, 0.12);
}

.code-block code {
  color: inherit;
  font-size: 13px;
  line-height: 1.6;
}

.status-list {
  display: grid;
  gap: 10px;
}

.status-item {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(11, 31, 51, 0.08);
  background: rgba(255, 255, 255, 0.88);
}

.status-item code {
  font-weight: 800;
  color: var(--navy);
}

.feature-item,
.callout-points > div {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(44, 167, 215, 0.08), rgba(244, 240, 222, 0.76));
  border: 1px solid rgba(10, 66, 109, 0.08);
}

.callout-dark {
  background: linear-gradient(160deg, #083a62 0%, #2ca7d7 100%);
  color: #fff;
}

.callout-dark h2,
.callout-dark strong,
.callout-dark .eyebrow {
  color: #fff;
}

.callout-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.callout-grid,
.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: start;
}

.footer {
  display: grid;
  gap: 12px;
  padding-top: 8px;
  color: var(--muted);
  font-size: 14px;
}

.bill-detail-page main {
  max-width: 1160px;
}

.bill-detail-page .hero,
.bill-detail-page .section,
.bill-detail-page .card {
  border-radius: 18px;
}

.bill-detail-page .hero,
.bill-detail-page .section {
  padding: 22px;
  margin-bottom: 18px;
}

.bill-detail-page .card {
  padding: 16px 18px;
}

.bill-detail-page .eyebrow {
  margin-bottom: 8px;
  font-size: 11px;
  letter-spacing: 0.11em;
}

.bill-detail-page h1 {
  margin-bottom: 8px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.bill-detail-page h2 {
  margin-bottom: 8px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.15;
}

.bill-detail-page h3 {
  margin-bottom: 6px;
  font-size: 15px;
}

.bill-detail-page .lead,
.bill-detail-page p,
.bill-detail-page li {
  font-size: 14px;
  line-height: 1.5;
}

.bill-detail-page p,
.bill-detail-page ul {
  margin-bottom: 10px;
}

.bill-detail-page .cta-row {
  gap: 10px;
  margin-top: 16px;
}

.bill-detail-page .cta,
.bill-detail-page .ghost {
  padding: 10px 14px;
  font-size: 13px;
}

.bill-detail-page #resend-to-quickbooks {
  font-weight: 700;
}

.bill-detail-page .icon-button {
  min-width: 40px;
  min-height: 40px;
  font-size: 18px;
}

.bill-detail-page .vendor-summary-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
}

.bill-detail-page .vendor-summary-name {
  min-width: 0;
}

.bill-detail-page .vendor-menu-trigger {
  width: 30px;
  min-width: 30px;
  min-height: 30px;
  padding: 5px;
  color: var(--navy);
  border-radius: 6px;
  background: transparent;
}

.bill-detail-page .vendor-menu-trigger svg {
  width: 17px;
  height: 17px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.bill-detail-page .vendor-menu-trigger:hover {
  color: var(--quickbooks-blue);
  background: rgba(44, 167, 215, 0.1);
}

.bill-detail-page .vendor-action-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 20;
  min-width: 150px;
  overflow: hidden;
  border: 1px solid rgba(10, 66, 109, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 30px rgba(10, 66, 109, 0.14);
}

.bill-detail-page .vendor-action-item {
  display: block;
  width: 100%;
  padding: 10px 12px;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.bill-detail-page .vendor-action-item:hover {
  background: rgba(44, 167, 215, 0.1);
}

.bill-detail-page .vendor-rename-panel {
  max-width: 420px;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid rgba(10, 66, 109, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
}

.bill-detail-page .vendor-rename-actions {
  margin-top: 10px;
}

.bill-detail-page .dashboard-cards .card {
  min-height: 112px;
}

.bill-detail-page .metric-small {
  margin-top: 6px;
  font-size: 16px;
  line-height: 1.25;
}

.bill-detail-page .form-grid {
  gap: 14px;
}

.bill-detail-page .field {
  gap: 6px;
}

.bill-detail-page .field span {
  font-size: 11px;
}

.bill-detail-page .muted-inline,
.bill-detail-page .form-note {
  font-size: 12px;
  line-height: 1.45;
}

.bill-detail-page .text-input {
  min-width: 0;
  padding: 11px 13px;
  border-radius: 12px;
  font-size: 13px;
}

.bill-detail-page .compact-select {
  min-width: 180px;
}

.bill-detail-page .data-table th,
.bill-detail-page .data-table td {
  padding: 10px 10px;
  font-size: 13px;
  line-height: 1.45;
}

.bill-detail-page .data-table thead th {
  font-size: 11px;
}

.bill-detail-page .status-pill {
  padding: 5px 8px;
  font-size: 11px;
}

.bill-detail-page .code-block {
  padding: 12px 14px;
  border-radius: 14px;
}

.bill-detail-page .code-block code {
  font-size: 12px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .hero-grid,
  .feature-split,
  .callout-grid,
  .grid,
  .api-meta,
  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .header-tools {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
  }

  .header-logo {
    width: 236px;
  }
}
