:root {
  color-scheme: light;
  --printed-date: "";
  --ink: #1f2933;
  --muted: #637381;
  --line: #d9e2ec;
  --soft: #f5f7fa;
  --panel: #ffffff;
  --blue: #1f6feb;
  --blue-dark: #144ea3;
  --green: #1f8a5b;
  --amber: #b7791f;
  --red: #c2413b;
  --nav: #14213d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #eef2f6;
  font-family: Arial, Helvetica, sans-serif;
}

button,
input,
select {
  font: inherit;
}

button,
.file-btn {
  cursor: pointer;
}

.app {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.app-locked,
.hidden {
  display: none;
}

.auth-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: #eef2f6;
}

.auth-screen.hidden {
  display: none;
}

.auth-panel {
  width: min(420px, 100%);
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(20, 33, 61, 0.14);
}

.auth-panel .brand-mark {
  margin-bottom: 4px;
  background: var(--nav);
  color: #ffffff;
}

.auth-panel h1,
.auth-panel p {
  margin: 0;
}

.auth-panel p {
  color: var(--muted);
  line-height: 1.45;
}

.auth-panel label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.auth-panel label.hidden {
  display: none;
}

.auth-panel input {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px;
  color: var(--ink);
}

.auth-error {
  min-height: 20px;
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
}

.reset-link-box {
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--soft);
  font-size: 13px;
}

.reset-link-box a {
  color: var(--blue);
  overflow-wrap: anywhere;
}

.reset-link-box p {
  font-size: 13px;
}

.sidebar {
  background: var(--nav);
  color: white;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: grid;
  gap: 10px;
  align-items: start;
}

.brand-logo {
  display: block;
  width: 205px;
  max-width: 100%;
  height: auto;
  padding: 8px;
  border-radius: 8px;
  background: #ffffff;
}

.brand-mark {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #ffffff;
  color: var(--nav);
  font-weight: 800;
  border-radius: 8px;
}

.brand h1,
.topbar h2,
.panel h3 {
  margin: 0;
}

.brand h1 {
  font-size: 18px;
  line-height: 1.2;
}

.brand p,
.topbar p {
  margin: 4px 0 0;
  color: #dbe7f3;
  font-size: 13px;
}

.backup-status,
.connection-status {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: #dbe7f3;
  font-size: 12px;
  line-height: 1.35;
}

.connection-status.connected {
  border-color: rgba(31, 138, 91, 0.5);
  background: rgba(31, 138, 91, 0.18);
}

.connection-status.failed {
  border-color: rgba(194, 65, 59, 0.55);
  background: rgba(194, 65, 59, 0.2);
}

.undo-box {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 12px;
}

.undo-box.hidden {
  display: none;
}

.nav {
  display: grid;
  gap: 8px;
}

.nav-btn,
.secondary-btn,
.primary-btn,
.danger-btn,
.file-btn {
  border: 0;
  border-radius: 6px;
  min-height: 42px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-btn {
  color: white;
  background: rgba(255, 255, 255, 0.1);
  text-align: left;
}

.nav-btn.active,
.nav-btn:hover {
  background: #ffffff;
  color: var(--nav);
}

.side-actions {
  display: grid;
  gap: 8px;
  position: sticky;
  top: 16px;
  z-index: 2;
  margin-top: 0;
  padding-top: 4px;
  background: var(--nav);
}

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

.topbar {
  min-height: 86px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  background: var(--panel);
  border: 1px solid var(--line);
  padding: 18px 20px;
  margin-bottom: 18px;
}

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

.workflow-strip {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.workflow-btn {
  border: 0;
  background: #e8f1ff;
  color: var(--blue-dark);
  padding: 8px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.workflow-btn:hover,
.workflow-btn.active {
  background: var(--blue);
  color: #ffffff;
}

.view {
  display: none;
}

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

.kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(150px, 1fr));
  gap: 12px;
}

.kpi,
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
}

.kpi {
  padding: 16px;
}

.kpi span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 6px;
}

.kpi strong {
  font-size: 30px;
  color: var(--nav);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.dashboard-stack {
  display: grid;
  gap: 18px;
}

.dashboard-panel {
  overflow: hidden;
}

.dashboard-table-wrap {
  overflow: visible;
  border: 0;
}

.dashboard-table {
  min-width: 0;
  border-collapse: separate;
  border-spacing: 0 8px;
}

.dashboard-table thead {
  display: none;
}

.dashboard-table tbody {
  display: grid;
  gap: 8px;
}

.dashboard-table tr {
  display: grid;
  grid-template-columns: minmax(80px, 0.7fr) minmax(220px, 2fr) repeat(4, minmax(120px, 1fr));
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
}

.dashboard-table td {
  display: grid;
  gap: 3px;
  min-width: 0;
  padding: 0;
  border: 0;
  overflow-wrap: anywhere;
}

.dashboard-table td::before {
  content: attr(data-label);
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.dashboard-table tr:hover td {
  background: transparent;
}

#dashAllocationRows tr {
  grid-template-columns: minmax(80px, 0.7fr) minmax(180px, 1.2fr) minmax(260px, 2fr) minmax(120px, 0.8fr) minmax(130px, 0.8fr);
}

.panel {
  padding: 18px;
  min-width: 0;
}

.panel h3 {
  font-size: 18px;
  margin-bottom: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 12px;
}

.form-grid.compact {
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  margin-bottom: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.checkbox-label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--ink);
  min-height: 40px;
}

.checkbox-label input {
  width: auto;
  min-height: 0;
}

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

.wide {
  grid-column: span 2;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.primary-btn {
  background: var(--blue);
  color: white;
}

.secondary-btn,
.file-btn {
  display: inline-grid;
  place-items: center;
  background: #e8edf3;
  color: var(--ink);
}

.report-actions .primary-btn,
.report-actions .secondary-btn,
.report-actions .file-btn {
  font-size: 14px;
  line-height: 1.2;
}

.secondary-btn.hidden,
.primary-btn.hidden,
.danger-btn.hidden,
.file-btn.hidden {
  display: none;
}

.danger-btn {
  background: #ffe8e6;
  color: #9f2d28;
}

.file-btn input {
  display: none;
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
}

.bulk-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  align-items: center;
  margin: 10px 0 14px;
}

.bulk-actions.secondary-action-row {
  margin-top: -4px;
}

.bulk-actions span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.bulk-actions .inline-control {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  min-height: 42px;
}

.bulk-actions .inline-control select {
  width: 170px;
  padding: 8px 10px;
}

.selection-col {
  width: 42px;
}

.section-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.section-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid transparent;
  border-bottom: 3px solid transparent;
  border-radius: 6px 6px 0 0;
  background: #f6f9fc;
  color: var(--muted);
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  white-space: nowrap;
}

.section-tab.active {
  background: #ffffff;
  border-color: var(--line);
  border-bottom-color: var(--blue);
  color: var(--blue-dark);
}

.equipment-tab-panel {
  display: none;
}

.equipment-tab-panel.active,
.report-tab-panel.active {
  display: block;
}

.report-tab-panel {
  display: none;
}

th input[type="checkbox"],
td input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

.table-input {
  width: 100%;
  min-width: 98px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 8px;
  background: #fff;
  color: var(--ink);
}

.money-input {
  min-width: 86px;
}

.report-block {
  display: grid;
  gap: 14px;
}

.report-block h4 {
  margin: 8px 0 0;
}

.report-letterhead {
  margin: 0 0 14px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.report-letterhead h2 {
  margin: 0;
  font-size: 22px;
}

.report-letterhead p {
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.report-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 10px;
}

.report-meta {
  display: flex;
  gap: 8px;
  align-items: baseline;
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 13px;
}

.report-meta strong {
  color: var(--ink);
}

.report-summary div {
  background: var(--soft);
  border: 1px solid var(--line);
  padding: 12px;
}

.report-summary span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 5px;
}

.report-summary strong {
  font-size: 16px;
}

.print-footer {
  display: none;
}

.document-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.1fr) minmax(0, 0.85fr);
  gap: 18px;
  margin-top: 24px;
  border-top: 1px solid #cfd8e3;
  padding-top: 8px;
  color: #637381;
  font-size: 10px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.document-footer strong {
  color: #374151;
}

.transaction-print {
  display: none;
}

.asset-tag-sheet {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10mm;
  color: #111827;
}

.asset-tag {
  min-height: 62mm;
  padding: 8mm;
  border: 1px solid #111827;
  page-break-inside: avoid;
  display: grid;
  gap: 5mm;
}

.asset-tag-header {
  display: flex;
  gap: 5mm;
  align-items: flex-start;
}

.asset-tag-header img {
  width: 44mm;
  height: auto;
  object-fit: contain;
}

.asset-tag-header div {
  display: grid;
  gap: 1mm;
  font-size: 8.5pt;
  line-height: 1.25;
}

.asset-tag-header strong {
  font-size: 10pt;
}

.asset-tag-title {
  font-size: 10pt;
  font-weight: 800;
  line-height: 1.2;
}

.asset-barcode {
  width: 100%;
  height: 18mm;
  display: block;
  fill: #000000;
}

.asset-tag-code {
  text-align: center;
  font-size: 13pt;
  font-weight: 900;
  letter-spacing: 1px;
}

.asset-tag-meta {
  display: flex;
  justify-content: space-between;
  gap: 6mm;
  border-top: 1px solid #cfd8e3;
  padding-top: 3mm;
  font-size: 9pt;
}

.asset-tag-meta span {
  color: #637381;
  font-weight: 800;
}

.transaction-document {
  color: #111827;
  page-break-after: always;
}

.transaction-document:last-child {
  page-break-after: auto;
}

.transaction-summary-document {
  page-break-after: auto;
}

.report-letterhead,
.document-letterhead {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.document-logo {
  display: block;
  width: 190px;
  height: auto;
  object-fit: contain;
}

.transaction-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid #111827;
}

.transaction-header h2,
.transaction-header p,
.report-letterhead h2,
.report-letterhead p,
.transaction-title strong,
.transaction-title span {
  margin: 0;
}

.transaction-title {
  display: grid;
  gap: 6px;
  text-align: right;
}

.transaction-title strong {
  font-size: 22px;
}

.transaction-title span {
  font-weight: 800;
}

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

.transaction-meta-grid div,
.transaction-customer,
.transaction-notes {
  border: 1px solid #cfd8e3;
  padding: 12px;
}

.record-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.record-grid div {
  border: 1px solid #cfd8e3;
  padding: 12px;
}

.record-grid span {
  display: block;
  color: #637381;
  font-size: 12px;
  margin-bottom: 4px;
}

.record-grid strong {
  display: block;
  font-size: 14px;
  overflow-wrap: anywhere;
}

.report-detail-grid {
  margin-top: 0;
}

.report-detail-grid .wide {
  grid-column: 1 / -1;
}

.transaction-meta-grid span {
  display: block;
  color: #637381;
  font-size: 12px;
  margin-bottom: 4px;
}

.transaction-customer h3,
.transaction-notes h3,
.authorisation-block h3,
.accepted-block h3 {
  margin: 0 0 8px;
  font-size: 15px;
}

.transaction-customer p,
.transaction-notes p,
.authorisation-block p {
  margin: 4px 0;
}

.print-notes-box p {
  min-height: 54px;
}

.accepted-block {
  margin-top: 24px;
}

.authorisation-block {
  margin-top: 24px;
  border: 1px solid #cfd8e3;
  padding: 12px;
}

.authorisation-block p {
  color: #374151;
  font-size: 12px;
  line-height: 1.45;
}

.transaction-table {
  width: 100%;
  min-width: 0;
  margin: 18px 0;
  border-collapse: collapse;
}

.transaction-table th,
.transaction-table td {
  border: 1px solid #cfd8e3;
  padding: 9px;
  text-align: left;
}

.transaction-table th {
  background: #eef4fb;
}

.summary-table {
  font-size: 12px;
}

.summary-table th,
.summary-table td {
  padding: 7px;
  vertical-align: top;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.signature-grid div {
  min-height: 64px;
  border-bottom: 1px solid #111827;
  display: flex;
  align-items: flex-end;
}

.signature-grid span {
  color: #637381;
  font-size: 12px;
  padding-bottom: 6px;
}

.pdf-text {
  max-height: 260px;
  overflow: auto;
  margin: 0;
  padding: 12px;
  white-space: pre-wrap;
  background: #f8fafc;
  border: 1px solid var(--line);
  font-size: 12px;
}

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

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

th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #edf4fb;
  color: #28445f;
  font-size: 12px;
}

tr:hover td {
  background: #f8fbff;
}

.row-actions {
  display: flex;
  gap: 6px;
}

.muted-line {
  margin: 0 0 12px;
  color: var(--muted);
}

.mini-btn {
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--blue-dark);
  font: inherit;
  font-weight: 800;
  text-align: left;
  text-decoration: underline;
}

.attachment-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.attachment-list a {
  color: var(--blue-dark);
  text-decoration: none;
}

.status {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  background: var(--soft);
}

.status.available,
.status.active,
.status.returned,
.status.completed {
  background: #e4f7ec;
  color: var(--green);
}

.status.at-customer,
.status.allocated,
.status.delivered,
.status.scheduled {
  background: #fff3d8;
  color: var(--amber);
}

.status.needs-service,
.status.in-workshop,
.status.overdue,
.status.lost {
  background: #ffe7e5;
  color: var(--red);
}

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

  .sidebar {
    position: static;
  }

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

  .topbar,
  .split {
    display: grid;
    grid-template-columns: 1fr;
  }

  .kpis,
  .form-grid,
  .form-grid.compact,
  .dashboard-table tr,
  #dashAllocationRows tr {
    grid-template-columns: 1fr;
  }

  .wide {
    grid-column: auto;
  }
}

@media print {
  @page {
    margin: 14mm 10mm 24mm;
  }

  body.printing-customer-report,
  body.printing-depreciation-report,
  body.printing-transaction,
  body.printing-asset-tags {
    background: white;
  }

  body.printing-customer-report .sidebar,
  body.printing-customer-report .topbar,
  body.printing-customer-report .view:not(#reports),
  body.printing-customer-report .section-tabs,
  body.printing-customer-report .depreciation-report-panel,
  body.printing-customer-report #printCurrentCustomerReport,
  body.printing-customer-report #printFullCustomerReport,
  body.printing-customer-report #reportCustomer,
  body.printing-customer-report .customer-report-panel .form-grid,
  body.printing-depreciation-report .sidebar,
  body.printing-depreciation-report .topbar,
  body.printing-depreciation-report .view:not(#reports),
  body.printing-depreciation-report .section-tabs,
  body.printing-depreciation-report .customer-report-panel,
  body.printing-depreciation-report #printDepreciationReport,
  body.printing-depreciation-report .depreciation-report-panel .form-grid,
  body.printing-depreciation-report .depreciation-report-panel .bulk-actions,
  body.printing-depreciation-report .depreciation-report-panel .selection-col,
  body.printing-transaction .sidebar,
  body.printing-transaction .topbar,
  body.printing-transaction .view {
    display: none !important;
  }

  body.printing-customer-report .app,
  body.printing-customer-report .workspace,
  body.printing-customer-report #reports,
  body.printing-customer-report .view.active,
  body.printing-depreciation-report .app,
  body.printing-depreciation-report .workspace,
  body.printing-depreciation-report #reports,
  body.printing-depreciation-report .view.active,
  body.printing-transaction .app,
  body.printing-transaction .workspace {
    display: block;
    min-height: auto;
    padding: 0;
  }

  body.printing-transaction #transactionPrint {
    display: block;
  }

  body.printing-customer-report .panel,
  body.printing-depreciation-report .panel {
    border: 0;
    padding: 0 0 18px;
    page-break-inside: avoid;
  }

  body.printing-customer-report .panel h3,
  body.printing-depreciation-report .panel h3 {
    font-size: 18px;
    margin: 0 0 10px;
  }

  body.printing-customer-report .report-letterhead,
  body.printing-depreciation-report .report-letterhead {
    margin-bottom: 16px;
  }

  body.printing-customer-report .report-letterhead h2,
  body.printing-depreciation-report .report-letterhead h2 {
    font-size: 22px;
  }

  body.printing-customer-report .table-wrap,
  body.printing-depreciation-report .table-wrap {
    overflow: visible;
  }

  body.printing-customer-report table,
  body.printing-depreciation-report table {
    min-width: 0;
    font-size: 10px;
  }

  body.printing-customer-report th,
  body.printing-customer-report td,
  body.printing-depreciation-report th,
  body.printing-depreciation-report td {
    padding: 6px;
    font-size: 10px;
  }

  body.printing-customer-report .status,
  body.printing-depreciation-report .status {
    padding: 0;
    background: transparent;
    color: inherit;
  }

  body.printing-customer-report .print-footer,
  body.printing-depreciation-report .print-footer,
  body.printing-transaction .print-footer {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    border-top: 1px solid #cfd8e3;
    padding-top: 4px;
    background: white;
    color: #637381;
    font-size: 9px;
    line-height: 1.2;
    box-sizing: border-box;
  }

  .print-footer-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .document-footer {
    font-size: 9px;
    page-break-inside: avoid;
  }

  .accepted-block {
    page-break-inside: avoid;
    margin-bottom: 28mm;
  }

  body.printing-customer-report .customer-report-panel,
  body.printing-depreciation-report .depreciation-report-panel,
  body.printing-transaction .transaction-document {
    padding-bottom: 18mm;
  }

  body.printing-asset-tags .asset-tag-sheet {
    padding-bottom: 18mm;
  }

  body.printing-asset-tags .asset-tag {
    break-inside: avoid;
  }

  .page-number::after {
    content: counter(page);
  }

.page-total::after {
    content: "";
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.55);
}

.modal-overlay.hidden {
  display: none;
}

.modal-panel {
  width: min(720px, 100%);
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.32);
  padding: 24px;
}

.modal-panel h2 {
  margin: 0 0 6px;
  color: #1f2a37;
  font-size: 26px;
}

.modal-subtitle {
  margin: 0 0 18px;
  color: #637381;
  font-weight: 700;
}

.setup-key-box {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px 14px;
  margin: 12px 0 18px;
  padding: 14px;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  background: #f8fafc;
}

.setup-key-box span {
  color: #637381;
  font-weight: 700;
}

.setup-key-box strong {
  overflow-wrap: anywhere;
  letter-spacing: 1px;
}

.qr-code {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto 18px;
  border: 1px solid #d8e2ee;
  border-radius: 8px;
  background: white;
  padding: 10px;
  box-sizing: border-box;
}
