:root {
  color-scheme: light;
  --ink: #172431;
  --muted: #596b78;
  --paper: #edf3f7;
  --panel: #ffffff;
  --line: #c3d0d9;
  --line-dark: #98aebb;
  --green: #14805a;
  --green-dark: #0d6848;
  --green-soft: #dff6eb;
  --amber: #a76200;
  --amber-dark: #7e4b00;
  --amber-soft: #fff0c7;
  --red: #c63745;
  --red-dark: #a52532;
  --red-soft: #ffe0e4;
  --blue: #2457d6;
  --blue-dark: #1842ae;
  --blue-soft: #e0e9ff;
  --coral: #f35f4b;
  --yellow: #f7c948;
  --teal: #149c95;
  --charcoal: #102a43;
  --charcoal-2: #173b5c;
  --steel: #e3ebf0;
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
  letter-spacing: 0 !important;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

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

button {
  min-height: 44px;
  border: 0;
  border-radius: 2px;
  padding: 0 16px;
  background: var(--blue);
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

button:hover {
  background: var(--blue-dark);
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(36, 87, 214, .28);
  outline-offset: 2px;
}

button:disabled {
  cursor: not-allowed;
  opacity: .42;
}

.button-secondary {
  border: 1px solid var(--line);
  background: #f7fbfd;
  color: var(--ink);
}

.button-secondary:hover {
  background: var(--steel);
}

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

.button-danger:hover {
  background: var(--red-dark);
}

.button-blue {
  background: var(--blue);
}

.period-arrow {
  width: 44px;
  padding: 0;
  font-family: Arial, sans-serif;
  font-size: 20px;
}

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

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

label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  border-radius: 50%;
  background: #36b66f;
  box-shadow: 0 0 0 3px rgba(54, 182, 111, .14);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 13px;
  color: #f7f8f6;
  text-align: left;
}

.brand-name,
.brand-system {
  display: block;
}

.brand-name {
  padding-right: 13px;
  border-right: 1px solid rgba(255, 255, 255, .24);
}

.brand-name strong,
.brand-system strong,
.brand-name small,
.brand-system small {
  display: block;
}

.brand-name strong,
.brand-system strong {
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  line-height: 1;
  text-transform: uppercase;
}

.brand-name strong {
  color: #fff;
  font-size: 19px;
}

.brand-system strong {
  color: #dceaf3;
  font-size: 14px;
}

.brand-name small,
.brand-system small {
  margin-top: 4px;
  color: #aebfca;
  font-size: 10px;
  font-weight: 800;
}

.brand-name small {
  color: var(--yellow);
}

.kiosk-shell {
  min-height: 100vh;
  background: var(--paper);
}

.kiosk-topbar {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px clamp(16px, 3vw, 34px);
  border-top: 7px solid var(--coral);
  border-bottom: 4px solid #0a2033;
  background: var(--charcoal);
}

.kiosk-topbar-actions,
.online-label {
  display: flex;
  align-items: center;
}

.kiosk-topbar-actions {
  gap: 18px;
}

.online-label {
  gap: 8px;
  color: #bfd1dc;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.header-link {
  min-height: 36px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #e7f0f5;
  font-size: 12px;
}

.header-link:hover {
  background: rgba(255, 255, 255, .1);
}

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

.side-nav {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: auto;
  border-right: 4px solid #0a2033;
  background: var(--charcoal);
  color: #f7f8f6;
  z-index: 30;
}

.brand-block {
  min-height: 88px;
  padding: 17px 14px;
  border-top: 7px solid var(--coral);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  background: #0b2236;
}

.brand-block:hover {
  background: #0b2236;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 12px;
}

.nav-label {
  margin: 0 8px 5px;
  color: #8fb7d3;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-label-secondary {
  margin-top: 20px;
}

.nav button {
  min-height: 44px;
  padding: 8px 10px;
  background: transparent;
  color: #e6f0f6;
  text-align: left;
  font-size: 14px;
}

.nav button:hover {
  background: rgba(255, 255, 255, .09);
}

.nav button.active {
  background: var(--blue);
  box-shadow: inset 5px 0 0 var(--yellow);
  color: #fff;
}

.side-nav-footer {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, .16);
  color: #8fb7d3;
  font-size: 9px;
  font-weight: 900;
}

.workspace {
  min-width: 0;
}

.workspace-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 22px;
  border-top: 5px solid var(--blue);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.workspace-bar div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page {
  width: min(1480px, 100%);
  margin: 0 auto;
  padding: 22px 26px 34px;
}

.kiosk-page {
  width: min(1360px, 100%);
  padding-top: 24px;
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 15px;
  border-bottom: 3px solid #9ec3da;
}

.page-header h1,
.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
}

.page-header h1 {
  margin-top: 3px;
  color: var(--charcoal);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
  line-height: 1.08;
}

.page-header p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.eyebrow {
  display: block;
  color: var(--coral);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
}

.panel {
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--panel);
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 11px;
  border-bottom: 2px solid var(--steel);
}

.panel-heading span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.unlock-page {
  min-height: calc(100vh - 76px);
  display: grid;
  align-content: center;
  grid-template-columns: minmax(0, 560px);
  justify-content: center;
}

.unlock-page .page-header {
  align-items: start;
}

.unlock-panel {
  width: 100%;
  padding: 22px;
  border-top: 5px solid var(--blue);
}

.unlock-panel .inline-actions button {
  min-width: 130px;
}

.unlock-button {
  width: 100%;
  margin-top: 14px;
}

.kiosk-clock {
  min-width: 190px;
  display: grid;
  justify-items: end;
}

.kiosk-clock strong {
  color: var(--charcoal);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.kiosk-clock span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.text-button {
  min-height: 24px;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  color: var(--blue);
  font-size: 11px;
}

.text-button:hover {
  background: transparent;
  color: var(--blue-dark);
}

.kiosk-layout {
  display: grid;
  grid-template-columns: minmax(290px, 370px) minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.employee-panel,
.punch-panel {
  margin-bottom: 0;
}

.employee-panel {
  border-top: 5px solid var(--coral);
}

.punch-panel {
  min-height: 610px;
  border-top: 5px solid var(--blue);
}

.employee-list {
  max-height: 66vh;
  display: grid;
  gap: 6px;
  overflow: auto;
  padding-right: 3px;
}

.employee-button {
  min-height: 64px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 14px;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: #f7fbfd;
  color: var(--ink);
  text-align: left;
}

.employee-button:hover {
  border-color: #91aeba;
  background: var(--steel);
}

.employee-button.active {
  border-color: var(--blue);
  background: var(--blue-soft);
  box-shadow: inset 5px 0 0 var(--blue);
}

.employee-avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  border-radius: 2px;
  background: var(--charcoal-2);
  color: #fff;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 12px;
}

.employee-avatar-large {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-left: 5px solid var(--coral);
  font-size: 14px;
}

.employee-copy {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.employee-copy strong,
.employee-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.employee-copy strong {
  font-size: 14px;
}

.employee-copy small {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.employee-chevron {
  color: var(--blue);
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.status-strip {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: #f7fbfd;
}

.selected-employee {
  display: flex;
  align-items: center;
  gap: 12px;
}

.selected-employee strong {
  display: block;
  font-size: 17px;
}

.selected-employee .muted {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
}

.status-pill {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.status-loading,
.status-out {
  background: var(--steel);
  color: #425665;
}

.status-clocked_in {
  background: var(--green-soft);
  color: var(--green-dark);
}

.status-at_lunch,
.status-on_break {
  background: var(--amber-soft);
  color: var(--amber-dark);
}

.punch-identity-grid {
  display: grid;
  grid-template-columns: minmax(190px, .7fr) minmax(280px, 1fr);
  gap: 14px;
  align-items: start;
}

.assignment-block {
  min-height: 76px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 12px 14px;
  border-left: 5px solid var(--teal);
  background: #eef8f7;
}

.assignment-block span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

.assignment-block strong {
  color: var(--charcoal);
  font-size: 14px;
  line-height: 1.3;
}

.pin-entry {
  display: grid;
  gap: 10px;
}

.pin-input {
  height: 58px;
  border-width: 2px;
  border-color: var(--line-dark);
  text-align: center;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 28px;
}

.pin-pad {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.pin-key {
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  background: #f7fbfd;
  color: var(--charcoal);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 18px;
}

.pin-key:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
}

.pin-key-action {
  font-family: "Trebuchet MS", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

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

.punch-action {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 4px;
  text-align: left;
}

.punch-action strong,
.punch-action span {
  display: block;
}

.punch-action strong {
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 20px;
  text-transform: uppercase;
}

.punch-action span {
  font-size: 11px;
  font-weight: 700;
  opacity: .83;
}

.punch-in {
  background: var(--green);
}

.punch-in:hover {
  background: var(--green-dark);
}

.punch-out {
  background: var(--red);
}

.punch-out:hover {
  background: var(--red-dark);
}

.lunch-start {
  background: var(--amber);
}

.lunch-start:hover {
  background: var(--amber-dark);
}

.lunch-end {
  background: var(--teal);
}

.lunch-end:hover {
  background: #0d7c77;
}

.empty-punch-state {
  min-height: 570px;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 30px;
  text-align: center;
}

.empty-punch-state h2 {
  margin-top: 15px;
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  color: var(--charcoal);
  font-size: 22px;
}

.empty-punch-state p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.empty-step {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 3px solid var(--blue);
  background: var(--blue-soft);
  color: var(--blue);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 24px;
}

.confirm,
.error {
  margin: 12px 0 0;
  padding: 13px 14px;
  border-radius: 2px;
  font-weight: 800;
}

.confirm {
  border: 1px solid #8ed0b7;
  border-left: 6px solid var(--green);
  background: var(--green-soft);
  color: var(--green-dark);
}

.section-note {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.compensation-panel {
  border-top: 5px solid var(--green);
}

.quickbooks-panel {
  border-top: 5px solid var(--teal);
}

.quickbooks-connection-list {
  border-top: 1px solid var(--line);
}

.quickbooks-connection-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) auto minmax(330px, auto);
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.quickbooks-action-group {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
}

.quickbooks-action-group button {
  min-width: 96px;
}

.quickbooks-company {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.quickbooks-company strong,
.quickbooks-company span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quickbooks-company span {
  font-size: 12px;
  font-weight: 700;
}

.quickbooks-employee-links {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
}

.quickbooks-employee-links h3 {
  margin: 0;
  font-size: 16px;
}

.quickbooks-link-summary {
  margin: 14px 0;
  color: var(--charcoal);
  font-size: 13px;
  font-weight: 900;
}

.connected-label {
  color: var(--green-dark);
}

.compensation-panel td:nth-child(5) {
  color: var(--green-dark);
  font-weight: 900;
  white-space: nowrap;
}

.overtime-watch {
  border-left: 6px solid var(--amber);
  background: #fffbef;
}

.error {
  border: 1px solid #e9a1aa;
  border-left: 6px solid var(--red);
  background: var(--red-soft);
  color: var(--red-dark);
}

.grid {
  display: grid;
  gap: 14px;
}

.grid > * {
  min-width: 0;
}

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

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

.form-row {
  display: grid;
  gap: 6px;
}

.field-help {
  margin: -1px 0 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.check-list {
  max-height: 132px;
  display: grid;
  gap: 6px;
  overflow: auto;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 2px;
}

.check-list label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
}

.check-list input {
  min-height: 0;
  width: auto;
}

.correction-box {
  margin: 12px 0;
  padding: 15px;
  border: 1px solid #e4bd70;
  border-left: 6px solid var(--amber);
  border-radius: 2px;
  background: #fffbef;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 16px;
}

.metric {
  min-height: 112px;
  display: grid;
  align-content: center;
  padding: 14px;
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  background: #fff;
}

.metric:nth-child(2) {
  border-top-color: var(--coral);
}

.metric:nth-child(3) {
  border-top-color: var(--teal);
}

.metric:nth-child(4) {
  border-top-color: var(--yellow);
}

.metric span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.metric strong {
  display: block;
  margin-top: 5px;
  color: var(--charcoal);
  font-family: "Arial Black", "Arial Narrow", Arial, sans-serif;
  font-size: 30px;
}

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

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

th,
td {
  padding: 10px 9px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef4f8;
  color: #405767;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
}

td {
  font-size: 13px;
}

tbody tr:hover td {
  background: #f7fbfd;
}

td button {
  min-height: 34px;
  padding: 0 10px;
  font-size: 11px;
}

.toolbar,
.toolbar-left,
.toolbar-right,
.inline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.toolbar {
  justify-content: space-between;
  margin-bottom: 12px;
}

.compact {
  max-width: 190px;
}

.alert-list {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
}

.alert-list li {
  padding: 11px 12px;
  border: 1px solid #e4bd70;
  border-left: 6px solid var(--amber);
  border-radius: 2px;
  background: var(--amber-soft);
  color: #684100;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.photo-preview,
video {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--steel);
}

.boot-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px;
}

.login-panel {
  width: min(100%, 430px);
}

.manager-footer {
  align-items: stretch;
  display: grid;
  gap: 8px;
}

.manager-footer > div {
  align-items: center;
  display: flex;
  gap: 8px;
}

.manager-footer .header-link {
  justify-content: flex-start;
  min-height: 34px;
}

.audit-identity {
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 800;
  margin: 0;
}

.unlock-row {
  align-items: end;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(220px, 1fr) auto;
  margin-top: 18px;
  padding-top: 18px;
}

@media (max-width: 1040px) {
  .app-shell {
    grid-template-columns: 194px minmax(0, 1fr);
  }

  .brand-lockup {
    gap: 9px;
  }

  .brand-name {
    padding-right: 9px;
  }

  .brand-name strong {
    font-size: 16px;
  }

  .brand-system strong {
    font-size: 12px;
  }

  .kiosk-layout {
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  }

  .punch-identity-grid {
    grid-template-columns: 1fr;
  }

  .punch-panel {
    min-height: 690px;
  }
}

@media (max-width: 820px) {
  .app-shell {
    display: block;
  }

  .side-nav {
    position: static;
    width: 100%;
    height: auto;
    min-height: 0;
    display: block;
    border-right: 0;
    border-bottom: 4px solid #0a2033;
  }

  .brand-block {
    width: 100%;
    min-height: 72px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 9px 12px 12px;
  }

  .nav-label,
  .side-nav-footer {
    display: none;
  }

  .nav button {
    text-align: center;
  }

  .nav button.active {
    box-shadow: inset 0 -4px 0 var(--yellow);
  }

  .kiosk-layout {
    grid-template-columns: 1fr;
  }

  .employee-list {
    max-height: 280px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .punch-panel {
    min-height: 0;
  }

  .empty-punch-state {
    min-height: 300px;
  }

  .punch-identity-grid {
    grid-template-columns: minmax(180px, .7fr) minmax(280px, 1fr);
  }

  .grid-2,
  .grid-3,
  .metric-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .kiosk-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .kiosk-topbar-actions {
    width: 100%;
    justify-content: space-between;
  }

  .page {
    padding: 18px 14px 28px;
  }

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

  .page-header h1 {
    font-size: 25px;
  }

  .kiosk-clock {
    min-width: 0;
    justify-items: start;
  }

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

  .punch-identity-grid,
  .grid-2,
  .grid-3,
  .metric-row {
    grid-template-columns: 1fr;
  }

  .kiosk-actions {
    grid-template-columns: 1fr 1fr;
  }

  .punch-action {
    min-height: 82px;
    padding: 10px;
  }

  .punch-action strong {
    font-size: 16px;
  }

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

  .toolbar,
  .toolbar-left,
  .toolbar-right {
    align-items: stretch;
    flex-direction: column;
  }

  .compact {
    max-width: none;
  }

  .unlock-row {
    grid-template-columns: 1fr;
  }

  .quickbooks-connection-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .quickbooks-connection-row .status-pill {
    justify-self: start;
  }

  .quickbooks-action-group {
    justify-content: stretch;
  }

  .quickbooks-action-group button {
    flex: 1;
  }
}
