.fleet-management-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.fleet-management-tab,
.fm-filter-pill {
  appearance: none;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #c7dedd;
  border-radius: 999px;
  background: #fff;
  color: #004d4a;
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
}

.fleet-management-tab.active,
.fm-filter-pill.active {
  border-color: rgb(0, 128, 123);
  background: rgb(0, 128, 123);
  color: #fff;
}

.fleet-management-summary {
  display: grid;
  grid-template-columns: repeat(6, minmax(120px, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}

.fm-summary-card {
  min-width: 0;
  padding: 11px 12px;
  border: 1px solid #d9e4e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 77, 74, 0.06);
}

.fm-summary-card span,
.fm-summary-card small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-summary-card span {
  color: #162127;
  font-size: 18px;
  font-weight: 950;
}

.fm-summary-card small {
  margin-top: 2px;
  color: #6c757d;
  font-size: 11px;
  font-weight: 850;
}

.fm-summary-card.warn {
  border-color: #ffe08a;
  background: #fff8df;
}

.fm-summary-card.ok {
  border-color: #b6dfc9;
  background: #f2fbf6;
}

.fm-assets-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.36fr) minmax(560px, 1fr);
  gap: 12px;
  align-items: start;
}

.fm-assets-directory,
.fm-asset-detail,
.fm-table-wrap,
.fm-cpm-head {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9e4e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 77, 74, 0.06);
}

.fm-assets-directory {
  height: min(760px, calc(100vh - 270px));
  display: flex;
  flex-direction: column;
}

.fm-toolbar {
  flex: 0 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 8px;
  padding: 10px;
  border-bottom: 1px solid #edf2f1;
  background: #f7fbfb;
}

.fm-search {
  display: flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  height: 32px;
  padding: 0 10px;
  border: 1px solid #ced4da;
  border-radius: 999px;
  background: #fff;
  color: rgb(0, 128, 123);
}

.fm-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: #212529;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.fm-toolbar select,
.fm-field select,
.fm-field input {
  min-width: 0;
  border: 1px solid #ced4da;
  border-radius: 7px;
  background: #fff;
  color: #212529;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
}

.fm-toolbar select {
  height: 32px;
  padding: 0 8px;
}

.fm-asset-list {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  overscroll-behavior: auto;
  padding: 8px;
}

.fm-asset-row {
  appearance: none;
  width: 100%;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  margin-bottom: 7px;
  padding: 9px;
  border: 1px solid #e2eceb;
  border-radius: 8px;
  background: #fff;
  color: #212529;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.fm-asset-row.asset-truck {
  border-left: 5px solid rgb(0, 128, 123);
  background: #f8fffe;
}

.fm-asset-row.asset-trailer {
  border-left: 5px solid #0d6efd;
  background: #f7fbff;
}

.fm-asset-row.selected {
  border-color: #111827;
  box-shadow: 0 0 0 2px #111827;
}

.fm-asset-row:hover {
  background: #f8fbfb;
}

.fm-unit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 30px;
  padding: 4px 8px;
  border-radius: 7px;
  background: rgb(0, 128, 123);
  color: #fff;
  font-size: 16px;
  font-weight: 950;
  line-height: 1;
}

.fm-unit-badge.asset-truck {
  background: rgb(0, 128, 123);
}

.fm-unit-badge.asset-trailer {
  background: #0d6efd;
}

.fm-unit-badge.small {
  min-width: 42px;
  min-height: 24px;
  padding: 3px 7px;
  font-size: 12px;
}

.fm-asset-row-main,
.fm-asset-row-value {
  min-width: 0;
}

.fm-asset-row-main strong,
.fm-asset-row-main small,
.fm-asset-row-value strong,
.fm-asset-row-value small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-asset-row-main strong {
  font-size: 12px;
  font-weight: 950;
}

.fm-asset-row-main small,
.fm-asset-row-value small {
  color: #6c757d;
  font-size: 10px;
  font-weight: 800;
}

.fm-asset-row-value {
  text-align: right;
}

.fm-status-row {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.fm-status,
.fm-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  white-space: nowrap;
}

.fm-status.ok {
  background: #d1e7dd;
  color: #0f5132;
}

.fm-status.warn {
  background: #fff3cd;
  color: #664d03;
}

.fm-status.danger {
  background: #f8d7da;
  color: #842029;
}

.fm-status.muted {
  background: #e9ecef;
  color: #495057;
}

.fm-asset-detail {
  padding: 14px;
}

.fm-detail-head,
.fm-cpm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.fm-detail-head {
  margin-bottom: 12px;
}

.fm-detail-head h2,
.fm-cpm-head h2 {
  margin: 2px 0 0;
  color: #172126;
  font-size: 20px;
  line-height: 1.1;
}

.fm-detail-head h2 small {
  color: #6c757d;
  font-size: 12px;
  font-weight: 850;
}

.fm-detail-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  justify-content: flex-end;
}

.fm-detail-actions .icon-only {
  width: 32px;
  min-width: 32px;
  padding: 0;
}

.fm-detail-metrics {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
}

.fm-detail-metrics > div {
  min-width: 0;
  padding: 9px 10px;
  border: 1px solid #edf2f1;
  border-radius: 8px;
  background: #f8fbfb;
}

.fm-detail-metrics strong,
.fm-detail-metrics small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-detail-metrics strong {
  font-size: 15px;
  font-weight: 950;
}

.fm-detail-metrics small {
  margin-top: 2px;
  color: #6c757d;
  font-size: 10px;
  font-weight: 850;
}

.fm-health-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.fm-asset-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.fm-form-section {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
  border: 1px solid #e1eceb;
  border-radius: 8px;
  background: #fff;
}

.fm-form-section.identity {
  grid-column: 1;
  grid-row: 1 / span 2;
}

.fm-form-section.purchase {
  grid-column: 2;
  grid-row: 1;
}

.fm-form-section.compliance {
  grid-column: 2;
  grid-row: 2;
}

.fm-form-section.equipment {
  grid-column: 1 / -1;
  grid-template-columns: repeat(7, minmax(78px, 1fr));
}

.fm-form-section h3 {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: #004d4a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

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

.fm-field span {
  color: #6c757d;
  font-size: 10px;
  font-weight: 900;
}

.fm-field input,
.fm-field select {
  width: 100%;
  height: 31px;
  padding: 0 8px;
}

.fm-expense-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.4fr) minmax(420px, 1fr);
  gap: 10px;
  margin-top: 12px;
}

.fm-expense-layout h3 {
  margin: 0 0 7px;
  color: #172126;
  font-size: 13px;
  font-weight: 950;
}

.fm-section-head-row,
.fm-table-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}

.fm-table-panel-head {
  margin-bottom: 10px;
}

.fm-table-panel-head h2 {
  margin: 2px 0 0;
  color: #172126;
  font-size: 18px;
  line-height: 1.1;
}

.fm-table-panel-head p {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.fm-expense-search {
  flex: 0 1 260px;
}

.fm-overdue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 10px;
}

.fm-table-wrap {
  overflow: auto;
  overscroll-behavior: auto;
  max-height: min(720px, calc(100vh - 260px));
}

.fm-table-wrap.compact {
  max-height: 320px;
}

.fm-assets-table-wrap {
  max-height: min(720px, calc(100vh - 330px));
}

.portal-table.fm-table {
  min-width: 760px;
}

.portal-table.fm-assets-table {
  min-width: 1620px;
}

.fm-assets-table tr.asset-truck td:first-child {
  border-left: 5px solid rgb(0, 128, 123);
}

.fm-assets-table tr.asset-trailer td:first-child {
  border-left: 5px solid #0d6efd;
}

.fm-table td,
.fm-table th {
  white-space: nowrap;
}

.fm-copy-column-head {
  cursor: copy;
  user-select: none;
}

.fm-copy-column-head:hover {
  color: rgb(0, 128, 123);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fm-click-row {
  cursor: pointer;
}

.fm-click-row:hover {
  background: #f8fbfb;
}

.fm-cpm-head {
  margin-bottom: 10px;
  padding: 13px 14px;
}

.fm-cpm-head.secondary {
  margin-top: 12px;
}

.fm-cpm-head p {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.fm-cpm-head-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  min-width: 0;
}

.fm-cpm-load-filters {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 4px 8px;
  border: 1px solid #c7dedd;
  border-radius: 999px;
  background: #f7fbfb;
  color: #004d4a;
  white-space: nowrap;
}

.fm-cpm-load-filters label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.fm-cpm-load-filters input {
  width: 13px;
  height: 13px;
  margin: 0;
  accent-color: rgb(0, 128, 123);
}

.fm-cpm-table-wrap {
  max-height: min(760px, calc(100vh - 320px));
}

.fm-cpm-v3-head {
  position: relative;
}

.fm-cpm-v3-actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.fm-cpm-v3-toggle {
  display: inline-flex;
  overflow: hidden;
  border: 1px solid #c7dedd;
  border-radius: 999px;
  background: #fff;
}

.fm-cpm-v3-toggle button {
  appearance: none;
  min-width: 50px;
  height: 29px;
  border: 0;
  border-right: 1px solid #d9e4e3;
  background: transparent;
  color: #004d4a;
  cursor: pointer;
  font: inherit;
  font-size: 11px;
  font-weight: 950;
}

.fm-cpm-v3-toggle.dollar-format button {
  min-width: 56px;
  font-size: 10px;
}

.fm-cpm-v3-toggle button:last-child {
  border-right: 0;
}

.fm-cpm-v3-toggle button.active {
  background: rgb(0, 128, 123);
  color: #fff;
}

.fm-cpm-v3-wrap {
  max-height: min(760px, calc(100vh - 320px));
}

.portal-table.fm-cpm-v3-table {
  min-width: 1180px;
  border-collapse: separate;
  border-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.fm-cpm-v3-table th,
.fm-cpm-v3-table td {
  padding: 7px 8px;
}

.fm-cpm-v3-table th {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgb(0, 128, 123);
  color: #fff;
  vertical-align: bottom;
}

.fm-cpm-v3-table th small {
  display: block;
  margin-top: 2px;
  color: #d9e4e3;
  font-size: 9px;
  font-weight: 850;
}

.fm-cpm-v3-th-main {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-cpm-v3-metric-head {
  display: grid;
  grid-template-columns: repeat(3, minmax(42px, 1fr));
  gap: 3px;
  min-width: 162px;
  margin-top: 5px;
}

.fm-cpm-v3-metric-head span {
  padding: 2px 3px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.2px;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.fm-cpm-v3-cell {
  display: grid;
  grid-template-columns: repeat(3, minmax(42px, 1fr));
  gap: 3px;
  min-width: 162px;
}

.fm-cpm-v3-cell span {
  display: grid;
  min-width: 0;
  padding: 4px 5px;
  border: 1px solid #e1eceb;
  border-radius: 6px;
  background: #f8fbfb;
  align-content: center;
}

.fm-cpm-v3-cell small,
.fm-cpm-v3-cell strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-cpm-v3-cell small {
  color: #6c757d;
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.fm-cpm-v3-cell strong {
  color: #172126;
  font-size: 10px;
  font-weight: 950;
  text-align: center;
}

.fm-cpm-v3-cell em {
  display: block;
  margin-top: 1px;
  overflow: hidden;
  color: #5f6f76;
  font-size: 9px;
  font-style: normal;
  font-weight: 900;
  line-height: 1.05;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fm-cpm-v3-cell.both-mode span {
  padding-top: 3px;
  padding-bottom: 3px;
}

.fm-cpm-v3-cell .variance.positive {
  border-color: #b6dfc9;
  background: #f2fbf6;
}

.fm-cpm-v3-cell .variance.positive strong {
  color: #146c43;
}

.fm-cpm-v3-cell .variance.negative {
  border-color: #f1aeb5;
  background: #fff5f6;
}

.fm-cpm-v3-cell .variance.negative strong {
  color: #b02a37;
}

.fm-cpm-v3-table th:first-child,
.fm-cpm-v3-table td:first-child {
  position: sticky;
  left: 0;
}

.fm-cpm-v3-table th:last-child,
.fm-cpm-v3-table td:last-child {
  position: sticky;
  right: 0;
  min-width: 192px;
}

.fm-cpm-v3-table th:first-child {
  z-index: 9;
  box-shadow: 2px 0 0 rgba(0, 77, 74, 0.18);
}

.fm-cpm-v3-table th:last-child {
  z-index: 9;
  box-shadow: -2px 0 0 rgba(0, 77, 74, 0.18);
}

.fm-cpm-v3-table tbody td:first-child,
.fm-cpm-v3-table tfoot td:first-child {
  z-index: 4;
  width: 156px;
  min-width: 156px;
  max-width: 156px;
  background: #fff;
  box-shadow: 2px 0 0 rgba(0, 77, 74, 0.08);
}

.fm-cpm-v3-table tbody td:last-child,
.fm-cpm-v3-table tfoot td:last-child {
  z-index: 4;
  background: #d6efed;
  box-shadow: -2px 0 0 rgba(0, 77, 74, 0.16);
}

.fm-cpm-v3-table tbody td:last-child .fm-cpm-v3-cell span,
.fm-cpm-v3-table tfoot td:last-child .fm-cpm-v3-cell span {
  border-color: rgba(0, 128, 123, 0.18);
  background: #f8fffe;
}

.fm-cpm-v3-table .fm-cpm-v3-total-row td {
  position: sticky;
  bottom: 0;
  z-index: 6;
  border-top: 2px solid rgba(0, 128, 123, 0.38);
  border-bottom: 0;
  background: #eef7f6;
}

.fm-cpm-v3-table .fm-cpm-v3-total-row .fm-cpm-target,
.fm-cpm-v3-table .fm-cpm-v3-total-row td:last-child {
  z-index: 8;
  background: #bfe3e0;
}

.fm-cpm-v3-total-row .fm-cpm-v3-cell span {
  background: #fff;
}

.portal-table.fm-cpm-table {
  min-width: 980px;
  font-variant-numeric: tabular-nums;
}

.fm-cpm-target {
  position: sticky;
  left: 0;
  z-index: 1;
  max-width: 280px;
  background: #fff;
  color: #172126;
  font-weight: 950;
}

.fm-cpm-target.indented {
  color: #495057;
  font-weight: 850;
}

.fm-cpm-section-row td {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #eef7f6;
  color: #004d4a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.fm-negative {
  color: #b02a37;
  font-weight: 950;
}

.fm-target-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 4100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(17, 24, 39, 0.5);
}

.fm-target-modal {
  width: min(1180px, 96vw);
  max-height: min(820px, 92vh);
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  overflow: hidden;
  border-radius: 12px;
  background: #f8fbfb;
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.24);
}

.fm-target-modal header,
.fm-target-modal footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
}

.fm-target-modal header {
  border-bottom: 1px solid #d9e4e3;
}

.fm-target-modal footer {
  border-top: 1px solid #d9e4e3;
}

.fm-target-modal h2 {
  margin: 2px 0 0;
  color: #172126;
  font-size: 20px;
  line-height: 1.1;
}

.fm-target-modal .icon-only {
  width: 30px;
  min-width: 30px;
  padding: 0;
}

.fm-target-modal-note {
  margin: 0;
  padding: 10px 16px;
  color: #495057;
  font-size: 12px;
  font-weight: 800;
}

.fm-target-editor-wrap {
  max-height: none;
  margin: 0 16px 16px;
}

.portal-table.fm-target-editor-table {
  min-width: 920px;
}

.fm-target-editor-table input {
  width: 100%;
  min-width: 92px;
  height: 30px;
  padding: 0 7px;
  border: 1px solid #ced4da;
  border-radius: 7px;
  background: #fff;
  color: #172126;
  font: inherit;
  font-size: 12px;
  font-weight: 850;
  font-variant-numeric: tabular-nums;
}

.fm-target-editor-table input:focus {
  outline: 2px solid rgba(0, 128, 123, 0.24);
  border-color: rgb(0, 128, 123);
}

.fm-insurance-head,
.fm-insurance-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d9e4e3;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 77, 74, 0.06);
}

.fm-insurance-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  padding: 13px 14px;
}

.fm-insurance-head h2,
.fm-insurance-card-head h2 {
  margin: 2px 0 0;
  color: #172126;
  font-size: 20px;
  line-height: 1.1;
}

.fm-insurance-head p {
  margin: 0;
  color: #6c757d;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
}

.fm-insurance-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
}

.fm-insurance-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #edf2f1;
  background: #f7fbfb;
}

.fm-insurance-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
}

.fm-insurance-table-wrap {
  max-height: min(520px, calc(100vh - 330px));
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.portal-table.fm-insurance-table {
  min-width: 980px;
}

.fm-insurance-table th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: rgb(0, 128, 123);
  color: #fff;
}

.fm-insurance-table td {
  font-weight: 800;
}

.fm-insurance-table tbody tr:nth-child(even) {
  background: #f8fbfb;
}

.fm-print-frame {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 0;
  height: 0;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.portal-empty.compact {
  min-height: 120px;
}

@media (max-width: 1100px) {
  .fleet-management-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fm-assets-layout,
  .fm-expense-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .fm-assets-directory {
    height: 360px;
  }

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

@media (max-width: 767px) {
  .fleet-management-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .fm-detail-head,
  .fm-cpm-head,
  .fm-insurance-head,
  .fm-section-head-row,
  .fm-table-panel-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fm-insurance-head {
    display: flex;
  }

  .fm-cpm-head p,
  .fm-insurance-head p,
  .fm-table-panel-head p {
    text-align: left;
  }

  .fm-cpm-head-actions,
  .fm-cpm-load-filters {
    justify-content: flex-start;
    white-space: normal;
  }

  .fm-insurance-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .fm-expense-search {
    width: 100%;
    flex-basis: auto;
  }

  .fm-detail-metrics,
  .fm-asset-form,
  .fm-form-section,
  .fm-form-section.equipment {
    grid-template-columns: minmax(0, 1fr);
  }

  .fm-form-section.identity,
  .fm-form-section.purchase,
  .fm-form-section.compliance,
  .fm-form-section.equipment {
    grid-column: auto;
    grid-row: auto;
  }

  .fm-table-wrap,
  .fm-cpm-table-wrap {
    max-height: 560px;
  }
}
