@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&family=Space+Grotesk:wght@700&display=swap");

:root {
  --op-font-ui: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --op-font-wordmark: "Space Grotesk", var(--op-font-ui);

  --op-navy-950: #0f172a;
  --op-navy-900: #111827;
  --op-blue-600: #2563eb;
  --op-blue-500: #3b82f6;
  --op-blue-100: #dbeafe;
  --op-slate-700: #334155;
  --op-slate-600: #475569;
  --op-slate-500: #64748b;
  --op-slate-400: #94a3b8;
  --op-slate-200: #e2e8f0;
  --op-slate-100: #f1f5f9;
  --op-slate-50: #f8fafc;
  --op-white: #ffffff;

  --op-green-600: #16a34a;
  --op-green-50: #f0fdf4;
  --op-amber-600: #d97706;
  --op-amber-50: #fffbeb;
  --op-red-600: #dc2626;
  --op-red-50: #fef2f2;

  --op-radius-xs: 6px;
  --op-radius-sm: 8px;
  --op-radius-md: 12px;
  --op-radius-lg: 16px;

  --op-shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --op-shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --op-shadow-md: 0 18px 48px rgba(15, 23, 42, 0.08);
  --op-focus: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

/* OpsProof scoped UI layer
   Wrap new or redesigned screens in `.op-scope` before using these classes.
   This prevents legacy selectors such as `.data-panel`, `.status-pill`,
   `.primary-button`, and `.data-table` from defining the new visual system. */

.op-scope {
  color: var(--op-navy-950);
  font-family: var(--op-font-ui);
  font-weight: 500;
}

.op-scope *,
.op-scope *::before,
.op-scope *::after {
  box-sizing: border-box;
}

.op-scope :where(h1, h2, h3, h4, p, figure) {
  margin: 0;
}

.op-scope :where(button, input, select, textarea) {
  font: inherit;
}

.op-scope :where(button, [role="button"], a) {
  -webkit-tap-highlight-color: transparent;
}

.op-scope .op-page {
  margin: 0 auto;
  max-width: 100%;
  min-width: 0;
  padding: 24px;
  width: 100%;
}

.op-scope .op-stack {
  display: grid;
  gap: 16px;
}

.op-scope .op-stack--sm {
  gap: 12px;
}

.op-scope .op-stack--lg {
  gap: 22px;
}

.op-scope .op-page-header {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-lg);
  box-shadow: var(--op-shadow-xs);
  display: grid;
  gap: 18px;
  min-width: 0;
  padding: 24px;
}

.op-scope .op-page-header__top {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  min-width: 0;
}

.op-scope .op-page-header__copy {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.op-scope .op-eyebrow {
  color: var(--op-slate-400);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-transform: uppercase;
}

.op-scope .op-title {
  color: var(--op-navy-950);
  font-size: clamp(1.35rem, 1.05rem + 0.8vw, 1.82rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.op-scope .op-section-title {
  color: var(--op-navy-950);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.op-scope .op-card-title {
  color: var(--op-navy-950);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.25;
}

.op-scope .op-body {
  color: var(--op-slate-600);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
}

.op-scope .op-meta {
  color: var(--op-slate-500);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.35;
}

.op-scope .op-stat-value {
  color: var(--op-navy-950);
  font-size: clamp(1.4rem, 1.08rem + 0.72vw, 1.86rem);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1;
}

.op-scope .op-stat-value--text {
  font-size: 0.95rem;
  letter-spacing: 0;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.op-scope .op-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  min-width: 0;
}

.op-scope .op-card-grid--compact {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
}

.op-scope .domain-support-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}

.op-scope .vehicle-admin-action-grid {
  align-items: start;
}

.op-scope .op-card,
.op-scope .op-panel {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  box-shadow: var(--op-shadow-xs);
  min-width: 0;
}

.op-scope .op-card {
  display: grid;
  gap: 12px;
  min-height: 132px;
  padding: 16px;
}

.op-scope .op-card--interactive {
  cursor: pointer;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.op-scope .op-card--interactive:hover {
  border-color: rgba(37, 99, 235, 0.34);
  box-shadow: var(--op-shadow-sm);
  transform: translateY(-1px);
}

.op-scope .op-card--interactive:focus-visible {
  box-shadow: var(--op-focus);
  outline: 0;
}

.op-scope .op-resource-card {
  align-content: start;
  gap: 16px;
  justify-items: start;
  min-height: 156px;
  padding: 20px;
  text-align: left;
}

.op-scope .op-resource-card .op-body {
  max-width: 34ch;
}

.op-scope .engineer-resource-card-grid {
  gap: 10px;
}

.op-scope .engineer-resource-card {
  gap: 10px;
  min-height: 0;
  padding: 14px;
}

.op-scope .engineer-resource-card__copy {
  display: grid;
  gap: 7px;
}

.op-scope .engineer-resource-card__actions {
  display: grid;
  gap: 8px;
}

.op-scope .engineer-resource-card__actions .op-button {
  justify-content: center;
  min-height: 38px;
  width: 100%;
}

.op-scope .document-unavailable-action {
  opacity: 0.74;
}

.op-scope.team-attention-centre-card .op-panel {
  padding: 20px;
}

.op-scope .people-attention-list {
  display: grid;
  gap: 10px;
}

.op-scope .people-attention-row {
  align-items: center;
  appearance: none;
  color: inherit;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(170px, 0.72fr) minmax(280px, 1.35fr) minmax(220px, auto) minmax(64px, auto);
  min-height: 0;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.op-scope .people-attention-row__person,
.op-scope .people-attention-row__intervention {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.op-scope .people-attention-row__person .op-status,
.op-scope .people-attention-row__intervention .op-status {
  justify-self: start;
}

.op-scope .people-attention-row__intervention {
  border-left: 1px solid var(--op-slate-200);
  padding-left: 14px;
}

.op-scope .people-attention-row__recommendation {
  color: var(--op-slate-600);
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0;
}

.op-scope .people-attention-row__recommendation strong {
  color: var(--op-navy-950);
  font-weight: 700;
}

.op-scope .people-attention-row__signals {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  min-width: 0;
}

.op-scope .people-attention-row__total {
  border-left: 1px solid var(--op-slate-200);
  display: grid;
  gap: 4px;
  justify-items: end;
  min-width: 64px;
  padding-left: 14px;
}

.op-scope .people-attention-row__total strong {
  color: var(--op-navy-950);
  font-size: 1.12rem;
  line-height: 1;
}

.op-scope .people-attention-row__total small {
  color: var(--op-slate-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.op-scope.team-priority-actions-card .op-panel {
  padding: 20px;
}

.op-scope .team-priority-filter-stack {
  display: grid;
  gap: 10px;
}

.op-scope .team-priority-legend {
  border-bottom: 1px solid var(--op-slate-200);
  border-top: 1px solid var(--op-slate-200);
  color: var(--op-slate-500);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  padding: 10px 0;
}

.op-scope .team-priority-legend span {
  font-size: 0.76rem;
  line-height: 1.35;
}

.op-scope .team-priority-legend strong {
  color: var(--op-navy-950);
  font-weight: 700;
}

.op-scope .team-priority-feed {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.op-scope .team-priority-row {
  align-items: center;
  appearance: none;
  color: inherit;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1fr) minmax(120px, auto);
  min-height: 0;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.op-scope .team-priority-row__main {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.op-scope .team-priority-row__main .op-status {
  justify-self: start;
}

.op-scope .team-priority-row__meta {
  align-items: flex-end;
  border-left: 1px solid var(--op-slate-200);
  display: grid;
  gap: 7px;
  justify-items: end;
  min-width: 120px;
  padding-left: 14px;
}

.op-scope .team-priority-row__meta strong {
  color: var(--op-slate-700);
  font-size: 0.84rem;
  line-height: 1.2;
}

.op-scope .people-attention-board {
  padding: 20px;
}

.op-scope .people-attention-board-list {
  display: grid;
  gap: 10px;
}

.op-scope .people-attention-board-controls {
  align-items: end;
  border-top: 1px solid var(--op-slate-200);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) minmax(170px, 220px) auto;
  padding-top: 14px;
}

.op-scope .people-attention-board-controls .op-pill-row {
  align-items: center;
  gap: 8px;
}

.op-scope .people-attention-board-sort {
  margin: 0;
}

.op-scope .people-attention-board-row {
  align-items: center;
  appearance: none;
  color: inherit;
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(170px, 0.8fr) minmax(220px, 1fr) minmax(220px, 1fr) minmax(120px, auto) auto;
  min-height: 0;
  padding: 14px 16px;
  text-align: left;
  width: 100%;
}

.op-scope .people-attention-board-row__person,
.op-scope .people-attention-board-row__next,
.op-scope .people-attention-board-row__activity {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.op-scope .people-attention-board-row__person .op-status {
  justify-self: start;
}

.op-scope .people-attention-board-row__signals {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.op-scope .people-attention-board-row__next,
.op-scope .people-attention-board-row__activity {
  border-left: 1px solid var(--op-slate-200);
  padding-left: 14px;
}

.op-scope .people-attention-board-row__next small,
.op-scope .people-attention-board-row__activity small {
  color: var(--op-slate-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.op-scope .people-attention-board-row__next strong,
.op-scope .people-attention-board-row__activity strong {
  color: var(--op-navy-950);
  font-size: 0.86rem;
  line-height: 1.25;
}

.op-scope .people-attention-board-row__next em {
  color: var(--op-slate-500);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 600;
  line-height: 1.3;
}

.op-scope .people-attention-board-row__open {
  pointer-events: none;
}

.op-scope button.engineer-focus-item {
  appearance: none;
  color: inherit;
  text-align: left;
  width: 100%;
}

.op-scope .engineer-focus-summary {
  cursor: pointer;
}

.op-scope .engineer-focus-items {
  gap: 10px;
}

.op-scope .engineer-focus-item {
  gap: 10px;
  min-height: 0;
  padding: 14px 16px;
}

.op-scope .engineer-focus-item__content {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.op-scope .engineer-focus-item__status {
  justify-items: end;
  text-align: right;
}

@media (max-width: 720px) {
  .op-scope .engineer-focus-item__content {
    grid-template-columns: 1fr;
  }

  .op-scope .engineer-focus-item__status {
    justify-items: start;
    text-align: left;
  }
}

.op-scope .op-resource-card__meta {
  align-self: end;
  border-top: 1px solid var(--op-slate-200);
  color: var(--op-slate-700);
  display: block;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3;
  margin-top: auto;
  padding-top: 14px;
  width: 100%;
}

.op-scope .op-resource-card__meta--planned {
  color: var(--op-slate-500);
  font-weight: 600;
}

.op-scope .op-resource-grid--count-2 {
  grid-template-columns: repeat(2, minmax(220px, 420px));
}

.op-scope .product-library-page .panel-footer {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  color: var(--op-slate-600);
  padding: 14px 16px;
}

.op-scope .product-library-page .pager button {
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  min-height: 32px;
  min-width: 32px;
}

.op-scope .product-library-page .pager button.active {
  background: var(--op-navy-950);
  border-color: var(--op-navy-950);
  color: var(--op-white);
}

.op-scope .product-library-search {
  align-items: end;
  grid-template-columns: minmax(260px, 1.5fr) minmax(180px, 1fr) minmax(180px, 1fr) auto;
}

.op-scope .product-library-reset-button {
  min-height: 40px;
}

.op-scope .product-library-filter-actions {
  align-items: start;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  justify-content: space-between;
}

.op-scope .product-library-segments button,
.op-scope .product-library-view-toggle button {
  cursor: pointer;
}

.op-scope .product-library-grid {
  align-items: stretch;
}

.op-scope .product-library-card {
  gap: 16px;
  min-height: 100%;
}

.op-scope .product-library-card-top,
.op-scope .product-detail-related-row {
  align-items: start;
  display: grid;
  gap: 14px;
  grid-template-columns: auto minmax(0, 1fr);
}

.op-scope .product-library-thumb,
.op-scope .product-library-visual {
  align-items: center;
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  color: var(--op-slate-600);
  display: inline-flex;
  font-weight: 700;
  height: 58px;
  justify-content: center;
  overflow: hidden;
  width: 58px;
}

.op-scope .product-library-thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.op-scope .product-library-thumb img + span {
  display: none;
}

.op-scope .product-library-specs {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.op-scope .product-library-specs span {
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  color: var(--op-navy-950);
  display: grid;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 4px;
  min-width: 0;
  padding: 10px;
}

.op-scope .product-library-specs small {
  color: var(--op-slate-500);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.op-scope .product-library-actions .op-button {
  align-items: center;
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  color: var(--op-navy-950);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  padding: 0 12px;
}

.op-scope .product-library-actions .planned-feature {
  color: var(--op-slate-500);
  cursor: not-allowed;
}

.op-scope .product-library-actions .planned-feature small {
  display: none;
}

.op-scope .product-library-list {
  overflow: hidden;
  padding: 0;
}

.op-scope .product-library-list-head,
.op-scope .product-library-list-row {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(240px, 1.5fr) minmax(150px, 1fr) minmax(140px, 1fr) minmax(150px, 1fr) minmax(180px, auto);
  padding: 14px 16px;
}

.op-scope .product-library-list-head {
  border-bottom: 1px solid var(--op-slate-200);
  color: var(--op-slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.op-scope .product-library-list-row {
  align-items: center;
  border-bottom: 1px solid var(--op-slate-200);
  color: var(--op-slate-700);
  font-size: 0.84rem;
}

.op-scope .product-library-list-row:last-child {
  border-bottom: 0;
}

.op-scope .product-library-list-row > div:first-child {
  display: grid;
  gap: 5px;
}

.op-scope .resource-register-panel .op-table-wrap {
  overflow-x: auto;
}

.op-scope .resource-register-table {
  min-width: 860px;
}

.op-scope .resource-register-table--wide {
  min-width: 1040px;
}

.op-scope .resource-register-table td {
  vertical-align: top;
}

.op-scope .op-resource-filter-grid {
  align-items: end;
  grid-template-columns: repeat(2, minmax(180px, 280px));
}

.op-scope .resource-register-actions .op-button,
.op-scope .resource-register-panel .register-tools .op-button,
.op-scope .resource-register-panel .op-button.planned-feature {
  align-items: center;
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  color: var(--op-navy-950);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  padding: 0 12px;
}

.op-scope .resource-register-actions .planned-feature,
.op-scope .resource-register-panel .register-tools .planned-feature,
.op-scope .resource-register-panel .op-button.planned-feature {
  color: var(--op-slate-500);
  cursor: not-allowed;
}

.op-scope .resource-register-actions .planned-feature small,
.op-scope .resource-register-panel .register-tools .planned-feature small,
.op-scope .resource-register-panel .op-button.planned-feature small {
  display: none;
}

.op-scope .resource-register-panel .register-tools {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.op-scope .audit-type-card {
  align-content: start;
  grid-template-columns: auto minmax(0, 1fr);
  min-height: 190px;
  text-align: left;
}

.op-scope .audit-type-card__code {
  align-items: center;
  background: var(--op-blue-100);
  border-radius: var(--op-radius-sm);
  color: var(--op-blue-600);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.op-scope .audit-type-card .op-status {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: auto;
}

.op-scope .game-launcher-card {
  align-content: start;
  min-height: 220px;
}

.op-scope .game-card-footer {
  justify-content: space-between;
  margin-top: auto;
}

.op-scope .games-secondary-grid {
  align-items: start;
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(220px, 0.8fr) repeat(2, minmax(260px, 1fr));
}

.op-scope .streak-days {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(7, minmax(28px, 1fr));
}

.op-scope .streak-days span {
  align-items: center;
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  color: var(--op-slate-700);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  min-height: 34px;
}

.op-scope .leaderboard-row,
.op-scope .award-row {
  align-items: center;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: auto;
  padding: 14px;
}

.op-scope .award-row {
  grid-template-columns: auto minmax(0, 1fr);
}

.op-scope .scenario-launcher-layout {
  align-items: start;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, 0.8fr);
}

.op-scope .scenario-row {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) auto auto;
  min-height: auto;
}

.op-scope .scenario-row-action {
  justify-content: flex-end;
}

.op-scope .scenario-row-action .planned-feature small {
  display: none;
}

.op-scope .scenario-info-list {
  display: grid;
  gap: 10px;
}

.op-scope .scenario-info-list p {
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  display: grid;
  gap: 4px;
  padding: 12px;
}

.op-scope .scenario-info-list span {
  color: var(--op-slate-600);
  font-size: 0.82rem;
}

.op-scope .operations-report-preview-panel .op-table-wrap {
  overflow-x: auto;
}

.op-scope .operations-report-preview-table {
  min-width: 760px;
}

.op-scope .operations-vehicle-fleet-table {
  min-width: 1380px;
}

.op-scope .operations-asset-register-table {
  min-width: 1420px;
}

.op-scope .operations-asset-register-table th:first-child,
.op-scope .operations-asset-register-table td:first-child {
  min-width: 118px;
}

.op-scope .operations-asset-register-table td:first-child .op-card-title {
  white-space: nowrap;
}

.op-scope .operations-asset-desktop-flow {
  display: grid;
  gap: 24px;
}

.op-scope .operations-asset-mobile-flow {
  display: none;
}

.op-scope .operations-asset-register-page--mobile .operations-asset-mobile-flow {
  display: grid;
  gap: 16px;
}

.op-scope .operations-asset-mobile-card-list {
  display: grid;
  gap: 12px;
}

.op-scope .operations-asset-mobile-card {
  gap: 14px;
}

.op-scope .operations-asset-mobile-card__top {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
}

.op-scope .operations-asset-mobile-card__facts {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.op-scope .operations-asset-mobile-card__facts span {
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  color: var(--op-slate-700);
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 10px;
}

.op-scope .operations-asset-mobile-card__facts strong {
  color: var(--op-slate-500);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.op-scope .operations-asset-mobile-detail--compact {
  gap: 12px;
}

.op-scope .operations-asset-mobile-detail-snapshot {
  display: grid;
  gap: 10px;
}

.op-scope .operations-asset-mobile-detail-block {
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  display: grid;
  gap: 8px;
  padding: 12px;
}

.op-scope .operations-asset-mobile-detail-block .op-section-title {
  font-size: 0.9rem;
  line-height: 1.25;
}

.op-scope .operations-asset-mobile-detail-grid {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.op-scope .operations-asset-mobile-detail-field {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 9px 10px;
}

.op-scope .operations-asset-mobile-detail-field--wide {
  grid-column: 1 / -1;
}

.op-scope .operations-asset-mobile-detail-field span {
  color: var(--op-slate-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
}

.op-scope .operations-asset-mobile-detail-field strong {
  color: var(--op-navy-950);
  font-size: 0.9rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.op-scope .operations-vehicle-fleet-planned-grid .op-card {
  min-height: 132px;
}

.op-scope .operational-setup-table {
  min-width: 1120px;
}

.op-scope .operational-setup-table th {
  line-height: 1.25;
  white-space: nowrap;
}

.op-scope .operational-setup-table td {
  vertical-align: top;
}

.op-scope .operations-engineer-selection-table {
  min-width: 820px;
}

.op-scope .operations-calendar-table {
  min-width: 980px;
}

.op-scope .operations-calendar-action-select {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  color: var(--op-navy-950);
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 34px;
  min-width: 132px;
  padding: 0 10px;
}

.op-scope .operations-report-library-table,
.op-scope .operations-report-history-table {
  min-width: 900px;
}

.op-scope .operations-activity-log-table {
  min-width: 860px;
}

.op-scope .operations-activity-log-panel .op-card-title {
  display: block;
  margin-bottom: 3px;
}

.op-scope .operations-skills-gap-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.op-scope .operations-skills-gap-card {
  min-height: 184px;
}

.op-scope .operations-skills-gap-card__header {
  align-items: flex-start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}

.op-scope .operations-skills-gap-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.op-scope .operations-reports-page .format-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.op-scope .operations-reports-page .report-history-actions {
  justify-content: flex-start;
}

.op-scope .operations-home-hero {
  gap: 20px;
}

.op-scope .operations-home-metrics {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.op-scope .operations-home-metrics .op-card {
  gap: 8px;
  min-height: 112px;
}

.op-scope .operations-home-launch-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.op-scope .operations-home-launch-card {
  align-content: start;
  cursor: pointer;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  justify-items: start;
  min-height: 188px;
  text-align: left;
  width: 100%;
}

.op-scope .operations-home-launch-card .tile-icon {
  background: var(--op-blue-100);
  border-color: #bfdbfe;
  color: #1e3a8a;
  height: 34px;
  width: 34px;
}

.op-scope .operations-home-launch-card .op-body {
  max-width: none;
}

.op-scope .operations-home-launch-card .op-resource-card__meta {
  color: var(--op-navy-950);
}

.op-scope .quiz-topics {
  gap: 14px;
}

.op-scope .quiz-topic-list {
  display: grid;
  gap: 8px;
}

.op-scope .quiz-topic-row {
  align-items: center;
  gap: 14px;
  grid-template-columns: 34px minmax(0, 1fr) auto auto;
  min-height: auto;
  padding: 14px 16px;
}

.op-scope .quiz-topic-index {
  align-items: center;
  background: var(--op-navy-950);
  border-radius: var(--op-radius-xs);
  color: var(--op-white);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.op-scope .quiz-topic-row .op-status {
  justify-self: end;
  max-width: 150px;
}

.op-scope .quiz-topic-row .op-button {
  min-width: 72px;
}

.op-scope .product-detail-grid,
.op-scope .document-detail-grid {
  align-items: start;
}

.op-scope .op-panel {
  padding: 20px;
}

.op-scope .op-panel--flush {
  padding: 0;
}

.op-scope .op-stat-strip {
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  overflow: hidden;
}

.op-scope .op-stat-cell {
  background: var(--op-white);
  display: grid;
  gap: 6px;
  min-height: 66px;
  padding: 14px 16px;
}

.op-scope .op-stat-cell + .op-stat-cell {
  border-left: 1px solid var(--op-slate-200);
}

.op-scope .op-stat-cell__label {
  color: var(--op-slate-400);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.op-scope .op-stat-cell__progress {
  background: var(--op-slate-100);
  border-radius: 999px;
  height: 3px;
  overflow: hidden;
}

.op-scope .op-stat-cell__progress > span {
  background: var(--op-blue-600);
  display: block;
  height: 100%;
}

.op-scope .op-pill-row,
.op-scope .op-action-row,
.op-scope .op-filter-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.op-scope .op-pill {
  align-items: center;
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-xs);
  color: var(--op-slate-700);
  display: inline-flex;
  gap: 7px;
  min-height: 28px;
  padding: 0 9px;
  white-space: nowrap;
}

.op-scope .op-pill__count {
  background: var(--op-slate-100);
  border-radius: 999px;
  color: var(--op-slate-700);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  padding: 4px 7px;
}

.op-scope .op-pill--active {
  background: var(--op-navy-950);
  border-color: var(--op-navy-950);
  color: var(--op-white);
}

.op-scope .op-pill--active .op-pill__count {
  background: rgba(255, 255, 255, 0.16);
  color: var(--op-white);
}

.op-scope .op-status {
  align-items: center;
  border: 1px solid var(--op-slate-200);
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 6px;
  line-height: 1;
  min-height: 24px;
  padding: 0 9px;
  white-space: nowrap;
}

.op-scope .op-status::before {
  background: currentColor;
  border-radius: 999px;
  content: "";
  height: 6px;
  opacity: 0.78;
  width: 6px;
}

.op-scope .op-tone--blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.op-scope .op-tone--green {
  background: var(--op-green-50);
  border-color: #bbf7d0;
  color: var(--op-green-600);
}

.op-scope .op-tone--amber {
  background: var(--op-amber-50);
  border-color: #fed7aa;
  color: var(--op-amber-600);
}

.op-scope .op-tone--red {
  background: var(--op-red-50);
  border-color: #fecaca;
  color: var(--op-red-600);
}

.op-scope .op-tone--neutral {
  background: var(--op-slate-50);
  border-color: var(--op-slate-200);
  color: var(--op-slate-600);
}

.op-scope .op-button {
  align-items: center;
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 700;
  gap: 8px;
  justify-content: center;
  line-height: 1;
  min-height: 36px;
  padding: 0 14px;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.op-scope .op-button:focus-visible {
  box-shadow: var(--op-focus);
  outline: 0;
}

.op-scope .op-button--primary {
  background: var(--op-blue-600);
  border-color: var(--op-blue-600);
  color: var(--op-white);
}

.op-scope .op-button--primary:hover {
  background: #1d4ed8;
  border-color: #1d4ed8;
}

.op-scope .op-button--secondary {
  background: var(--op-white);
  color: var(--op-navy-950);
}

.op-scope .op-button--secondary:hover {
  background: var(--op-slate-50);
  border-color: #cbd5e1;
}

.op-scope .op-button--ghost {
  background: transparent;
  border-color: transparent;
  color: var(--op-slate-600);
}

.op-scope .op-button--ghost:hover {
  background: var(--op-slate-50);
  color: var(--op-navy-950);
}

.op-scope .op-table-wrap {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.op-scope .op-table-scroll {
  overflow-x: auto;
}

.op-scope .op-table {
  border-collapse: collapse;
  min-width: 100%;
  width: 100%;
}

.op-scope .op-table th,
.op-scope .op-table td {
  border-bottom: 1px solid var(--op-slate-200);
  padding: 12px 14px;
  text-align: left;
  vertical-align: middle;
}

.op-scope .op-table th {
  background: var(--op-white);
  color: var(--op-slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.op-scope .op-table td {
  color: var(--op-slate-700);
  font-size: 0.82rem;
  font-weight: 500;
}

.op-scope .op-table tr:last-child td {
  border-bottom: 0;
}

.op-scope .op-table tbody tr:hover {
  background: var(--op-slate-50);
}

.op-scope .data-panel {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  box-shadow: var(--op-shadow-xs);
  margin: 0;
  min-width: 0;
  overflow: hidden;
  padding: 20px;
}

.op-scope .data-panel > header {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  margin: 0 0 14px;
  min-width: 0;
}

.op-scope .data-panel > header h3,
.op-scope .data-panel h3 {
  color: var(--op-navy-950);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.op-scope .data-panel > header p,
.op-scope .data-panel p {
  color: var(--op-slate-600);
  font-size: 0.86rem;
  font-weight: 500;
  line-height: 1.55;
  margin: 0;
}

.op-scope .data-table {
  border-collapse: collapse;
  min-width: max-content;
  width: 100%;
}

.op-scope .data-table th,
.op-scope .data-table td {
  border-bottom: 1px solid var(--op-slate-200);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.op-scope .data-table th {
  background: var(--op-white);
  color: var(--op-slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.op-scope .data-table td {
  color: var(--op-slate-700);
  font-size: 0.82rem;
  font-weight: 500;
}

.op-scope .data-table tr:last-child td {
  border-bottom: 0;
}

.op-scope .admin-tab-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  max-width: 100%;
  overflow: visible;
}

.op-scope .admin-tab-strip button {
  flex: 0 1 auto;
  max-width: 100%;
  white-space: normal;
}

.op-scope .document-admin-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  min-width: 0;
}

.op-scope .table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.op-scope .priority-action-feed,
.op-scope .dashboard-pagination-footer,
.op-scope .document-admin-tabs,
.op-scope .product-library-search,
.op-scope .product-library-selects,
.op-scope .operations-asset-register-filter-grid {
  max-width: 100%;
  min-width: 0;
}

.op-scope .dashboard-pagination-footer {
  flex-wrap: wrap;
}

.op-scope .qualification-op-category-header {
  border-bottom: 1px solid var(--op-slate-200);
  padding: 14px 16px;
}

.op-scope .qualification-op-table {
  min-width: 900px;
}

.op-scope .qualification-op-table td {
  vertical-align: top;
}

.op-scope .qualification-op-table td strong {
  color: var(--op-navy-950);
  font-weight: 700;
}

.op-scope .qualification-op-table .op-meta {
  margin-top: 4px;
}

.op-scope .op-form-grid.op-controlled-record-filter-grid {
  align-items: end;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
}

.op-scope .op-controlled-records-table th,
.op-scope .op-controlled-records-table td {
  padding: 10px 12px;
}

.op-scope .op-controlled-records-table td {
  vertical-align: top;
}

.op-scope .op-controlled-records-table tbody tr:nth-child(even) {
  background: #fcfdff;
}

.op-scope .op-controlled-records-table .op-status {
  margin-top: -1px;
}

.op-scope .op-form-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.op-scope .op-field {
  display: grid;
  gap: 6px;
}

.op-scope .op-field label,
.op-scope .op-field__label {
  color: var(--op-slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.op-scope .op-field :where(input, select, textarea) {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  color: var(--op-navy-950);
  min-height: 38px;
  padding: 8px 10px;
  width: 100%;
}

.op-scope .op-field :where(input, select, textarea):focus {
  border-color: var(--op-blue-500);
  box-shadow: var(--op-focus);
  outline: 0;
}

.op-scope .op-field textarea {
  min-height: 96px;
  resize: vertical;
}

.op-scope .platform-help-label {
  align-items: center;
  display: inline-flex;
  gap: 6px;
  min-width: 0;
}

.op-scope .platform-help {
  display: inline-flex;
  line-height: 1;
  margin-left: 6px;
  position: relative;
  vertical-align: middle;
  z-index: 3;
}

.op-scope .platform-help__button {
  align-items: center;
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: 999px;
  color: var(--op-slate-600);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.72rem;
  font-weight: 700;
  height: 22px;
  justify-content: center;
  line-height: 1;
  padding: 0;
  width: 22px;
}

.op-scope .platform-help__button:hover,
.op-scope .platform-help__button[aria-expanded="true"] {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}

.op-scope .platform-help__button:focus-visible,
.op-scope .platform-help__close:focus-visible {
  box-shadow: var(--op-focus);
  outline: 0;
}

.op-scope .platform-help__popover {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  box-shadow: var(--op-shadow-md);
  color: var(--op-slate-600);
  display: grid;
  font-size: 0.78rem;
  gap: 8px;
  left: 0;
  line-height: 1.45;
  min-width: min(280px, calc(100vw - 48px));
  padding: 14px 38px 14px 14px;
  position: absolute;
  text-transform: none;
  top: calc(100% + 8px);
  z-index: 30;
}

.op-scope .platform-help__popover strong {
  color: var(--op-navy-950);
  font-size: 0.86rem;
}

.op-scope .platform-help__popover ul {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 16px;
}

.op-scope .platform-help__close {
  align-items: center;
  background: transparent;
  border: 0;
  border-radius: 999px;
  color: var(--op-slate-500);
  cursor: pointer;
  display: inline-flex;
  height: 26px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 7px;
  top: 7px;
  width: 26px;
}

.op-scope .bulk-assignment-panel {
  border-style: dashed;
}

.op-scope .bulk-assignment-list {
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  display: grid;
  gap: 0;
  max-height: 360px;
  overflow: auto;
}

.op-scope .bulk-assignment-list__header {
  background: var(--op-slate-50);
  border-bottom: 1px solid var(--op-slate-200);
  color: var(--op-slate-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.op-scope .bulk-assignment-option {
  align-items: start;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: auto minmax(0, 1fr);
  padding: 12px;
}

.op-scope .bulk-assignment-option + .bulk-assignment-option {
  border-top: 1px solid var(--op-slate-200);
}

.op-scope .bulk-assignment-option:hover {
  background: var(--op-slate-50);
}

.op-scope .bulk-assignment-option input {
  margin-top: 2px;
}

.op-scope .bulk-assignment-option > span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.op-scope .bulk-assignment-option strong {
  color: var(--op-navy-950);
  font-size: 0.86rem;
  line-height: 1.3;
}

.op-scope .bulk-assignment-option small {
  color: var(--op-slate-500);
  font-size: 0.74rem;
  font-weight: 600;
  line-height: 1.35;
}

.op-scope .bulk-assignment-results {
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  display: grid;
  gap: 10px;
  padding: 12px;
}

.op-scope .bulk-assignment-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.op-scope .bulk-assignment-results ul {
  display: grid;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.op-scope .bulk-assignment-results li {
  align-items: center;
  display: grid;
  gap: 8px;
  grid-template-columns: auto minmax(120px, 0.45fr) minmax(0, 1fr);
}

.op-scope .bulk-assignment-results small {
  color: var(--op-slate-500);
  font-weight: 600;
  line-height: 1.35;
}

.op-scope .op-workflow {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  display: grid;
  gap: 0;
  overflow: hidden;
}

.op-scope .op-workflow-step {
  align-items: start;
  display: grid;
  gap: 10px;
  grid-template-columns: auto 1fr auto;
  padding: 16px 18px;
}

.op-scope .op-workflow-step + .op-workflow-step {
  border-top: 1px solid var(--op-slate-200);
}

.op-scope .op-workflow-step__marker {
  align-items: center;
  background: var(--op-blue-100);
  border-radius: 999px;
  color: var(--op-blue-600);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  height: 28px;
  justify-content: center;
  width: 28px;
}

.op-scope .op-alert {
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  color: var(--op-slate-700);
  padding: 14px 16px;
}

.op-scope .vehicle-safety-check-form {
  gap: 12px;
}

.op-scope .vehicle-check-header {
  align-items: start;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
}

.op-scope .vehicle-check-header > .op-status {
  justify-self: end;
}

.op-scope .vehicle-check-section {
  display: grid;
  gap: 10px;
}

.op-scope .vehicle-check-section--compact {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  padding: 12px;
}

.op-scope .vehicle-check-progress-panel {
  align-items: center;
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(190px, 0.34fr) minmax(0, 1fr);
  padding: 12px;
}

.op-scope .vehicle-check-progress-panel strong {
  color: var(--op-slate-900);
  display: block;
  font-size: 0.95rem;
}

.op-scope .vehicle-check-progress-panel span {
  color: var(--op-slate-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.op-scope .vehicle-check-progress-track {
  background: var(--op-slate-200);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}

.op-scope .vehicle-check-progress-track span {
  background: var(--op-blue-600);
  display: block;
  height: 100%;
  transition: width 0.18s ease;
  width: 0;
}

.op-scope .vehicle-check-compact-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.op-scope .vehicle-check-confirmation {
  align-items: center;
  background: var(--op-slate-50);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  color: var(--op-slate-700);
  display: flex;
  gap: 10px;
  line-height: 1.45;
  min-height: 44px;
  padding: 9px 12px;
}

.op-scope .vehicle-check-confirmation--inline {
  font-size: 0.86rem;
  font-weight: 700;
}

.op-scope .vehicle-check-confirmation input {
  flex: 0 0 auto;
  height: 18px;
  min-height: 18px;
  width: 18px;
}

.op-scope .vehicle-check-confirmation span {
  min-width: 0;
}

.op-scope .vehicle-check-accordion {
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  overflow: hidden;
}

.op-scope .vehicle-check-accordion summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  list-style: none;
  min-height: 48px;
  padding: 11px 12px;
}

.op-scope .vehicle-check-accordion summary::-webkit-details-marker {
  display: none;
}

.op-scope .vehicle-check-accordion summary span:first-child {
  color: var(--op-slate-900);
  font-size: 0.95rem;
  font-weight: 800;
}

.op-scope .vehicle-check-list {
  display: grid;
  gap: 8px;
  padding: 0 12px 12px;
}

.op-scope .vehicle-check-section-track {
  background: var(--op-slate-100);
  border-top: 1px solid var(--op-slate-200);
  height: 4px;
  overflow: hidden;
}

.op-scope .vehicle-check-section-track span {
  background: var(--op-blue-600);
  display: block;
  height: 100%;
  transition: width 0.18s ease;
  width: 0;
}

.op-scope .vehicle-check-item {
  border-color: var(--op-slate-200);
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
  padding: 12px;
}

.op-scope .vehicle-check-item__main {
  min-width: 0;
}

.op-scope .vehicle-check-segments {
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.op-scope .vehicle-check-status {
  align-items: center;
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-sm);
  color: var(--op-slate-700);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 8px 6px;
}

.op-scope .vehicle-check-status:hover {
  border-color: var(--op-blue-300);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.op-scope .vehicle-check-status--pass.is-selected,
.op-scope .vehicle-check-item--pass {
  background: #f0fdf4;
  border-color: #86efac;
}

.op-scope .vehicle-check-status--pass.is-selected {
  color: #166534;
}

.op-scope .vehicle-check-status--minor.is-selected,
.op-scope .vehicle-check-item--minor {
  background: #fffbeb;
  border-color: #fbbf24;
}

.op-scope .vehicle-check-status--minor.is-selected {
  color: #92400e;
}

.op-scope .vehicle-check-status--critical.is-selected,
.op-scope .vehicle-check-item--critical {
  background: #fef2f2;
  border-color: #f87171;
}

.op-scope .vehicle-check-status--critical.is-selected {
  color: #991b1b;
}

.op-scope .vehicle-check-status--not_applicable.is-selected,
.op-scope .vehicle-check-item--not_applicable {
  background: var(--op-slate-50);
  border-color: var(--op-slate-300);
}

.op-scope .vehicle-check-status--not_applicable.is-selected {
  color: var(--op-slate-700);
}

.op-scope .vehicle-check-item__notes,
.op-scope .vehicle-check-item__evidence {
  grid-column: 1 / -1;
}

.op-scope .vehicle-check-item__notes[hidden],
.op-scope .vehicle-check-item__evidence[hidden],
.op-scope .vehicle-check-critical-warning[hidden] {
  display: none;
}

.op-scope .vehicle-check-submit-bar {
  align-items: center;
  background: var(--op-white);
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  bottom: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.12);
  display: grid;
  gap: 12px;
  grid-template-columns: auto auto auto minmax(130px, 1fr) auto;
  padding: 12px;
  position: sticky;
  z-index: 2;
}

.op-scope .vehicle-check-submit-bar span:not(.op-status) {
  color: var(--op-slate-500);
  font-size: 0.82rem;
  font-weight: 700;
}

.op-scope .vehicle-check-completion {
  align-items: center;
  border: 1px solid var(--op-slate-200);
  border-radius: var(--op-radius-md);
  display: grid;
  gap: 12px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 14px 16px;
}

.op-scope .vehicle-check-completion.op-tone--green {
  background: #f0fdf4;
  border-color: #86efac;
}

.op-scope .vehicle-check-completion.op-tone--red {
  background: #fef2f2;
  border-color: #fca5a5;
}

.op-scope .vehicle-check-completion .op-body {
  margin: 0;
}

.op-scope .vehicle-check-summary-pill {
  align-items: center;
  border: 1px solid var(--op-slate-200);
  border-radius: 999px;
  display: inline-flex;
  gap: 6px;
  justify-content: center;
  min-height: 34px;
  padding: 5px 10px;
  white-space: nowrap;
}

.op-scope .vehicle-check-summary-pill--pass {
  background: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.op-scope .vehicle-check-summary-pill--minor {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

.op-scope .vehicle-check-summary-pill--critical {
  background: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.op-scope .admin-compliance-document-note {
  align-content: start;
  display: grid;
  gap: 6px;
  min-height: 108px;
}

.op-scope .admin-compliance-document-note strong {
  color: var(--op-navy-950);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.op-scope .admin-compliance-document-note span {
  color: var(--op-slate-600);
  font-size: 0.88rem;
  line-height: 1.45;
}

.op-scope .op-empty {
  background: var(--op-slate-50);
  border: 1px dashed #cbd5e1;
  border-radius: var(--op-radius-md);
  color: var(--op-slate-500);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 20px;
  text-align: center;
}

.op-scope .op-divider {
  background: var(--op-slate-200);
  border: 0;
  height: 1px;
  margin: 0;
}

.op-scope .op-wordmark {
  font-family: var(--op-font-wordmark);
  font-weight: 700;
  letter-spacing: -0.02em;
}

@media (max-width: 900px) {
  .op-page {
    padding: 16px;
  }

  .op-page-header {
    padding: 22px;
  }

  .op-page-header__top {
    display: grid;
  }

  .op-stat-cell + .op-stat-cell {
    border-left: 0;
    border-top: 1px solid var(--op-slate-200);
  }

  .op-workflow-step {
    grid-template-columns: auto 1fr;
  }

  .op-scope .op-form-grid.op-controlled-record-filter-grid {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
  }

  .op-scope .product-library-search {
    grid-template-columns: 1fr 1fr;
  }

  .op-scope .product-library-list-head {
    display: none;
  }

  .op-scope .product-library-list-row {
    grid-template-columns: 1fr;
  }

  .op-scope .op-resource-filter-grid {
    grid-template-columns: 1fr 1fr;
  }

  .op-scope .people-attention-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .people-attention-row__signals {
    justify-content: flex-start;
  }

  .op-scope .people-attention-row__intervention {
    border-left: 0;
    border-top: 1px solid var(--op-slate-200);
    padding-left: 0;
    padding-top: 12px;
  }

  .op-scope .people-attention-row__total {
    border-left: 0;
    border-top: 1px solid var(--op-slate-200);
    justify-items: start;
    padding-left: 0;
    padding-top: 12px;
  }

  .op-scope .team-priority-feed,
  .op-scope .team-priority-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .team-priority-row__meta {
    align-items: flex-start;
    border-left: 0;
    border-top: 1px solid var(--op-slate-200);
    justify-items: start;
    min-width: 0;
    padding-left: 0;
    padding-top: 12px;
  }

  .op-scope .people-attention-board-row {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .people-attention-board-controls {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .people-attention-board-row__next,
  .op-scope .people-attention-board-row__activity {
    border-left: 0;
    border-top: 1px solid var(--op-slate-200);
    padding-left: 0;
    padding-top: 12px;
  }

  .op-scope .people-attention-board-row__open {
    justify-self: start;
  }

  .op-scope .games-secondary-grid {
    grid-template-columns: 1fr;
  }

  .op-scope .scenario-launcher-layout {
    grid-template-columns: 1fr;
  }
}

.op-scope .operations-asset-register-filters {
  gap: 8px;
  padding: 14px;
}

.op-scope .operations-asset-register-filter-grid,
.op-scope .operations-asset-register-filter-grid__row {
  display: grid;
  gap: 10px;
  grid-template-columns: minmax(0, 1fr);
}

.op-scope .operations-asset-register-filter-grid label {
  min-width: 0;
}

@media (min-width: 901px) {
  .op-scope .operations-asset-register-filter-grid__row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .op-scope .operations-asset-register-page {
    gap: 16px;
  }

  .op-scope .operations-asset-desktop-flow {
    display: none;
  }

  .op-scope .operations-asset-mobile-flow {
    display: grid;
    gap: 16px;
  }

  .op-scope .operations-asset-mobile-flow .op-page-header,
  .op-scope .operations-asset-mobile-flow .op-panel {
    padding: 18px;
  }

  .op-scope .operations-asset-mobile-summary {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .op-scope .operations-asset-mobile-launch-grid,
  .op-scope .operations-asset-mobile-detail .op-card-grid,
  .op-scope .operations-asset-mobile-workflow .op-card-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .operations-asset-mobile-launch-card {
    min-height: 132px;
    text-align: left;
  }

  .op-scope .operations-asset-mobile-card__top,
  .op-scope .operations-asset-mobile-card__facts,
  .op-scope .operations-asset-mobile-controls .admin-form-grid,
  .op-scope .operations-asset-mobile-form-view .admin-form-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .operations-asset-mobile-card .op-action-row,
  .op-scope .operations-asset-mobile-back-row,
  .op-scope .operations-asset-mobile-link-row,
  .op-scope .operations-asset-mobile-detail-actions {
    align-items: stretch;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .operations-asset-mobile-detail-head {
    gap: 10px;
  }

  .op-scope .operations-asset-mobile-flow .op-button {
    width: 100%;
  }

  .op-scope .operations-asset-mobile-flow .op-table-wrap,
  .op-scope .operations-asset-mobile-flow .op-table-scroll {
    overflow: visible;
  }

  .op-scope .operations-asset-mobile-flow .op-table {
    border: 0;
    display: block;
    min-width: 0;
    width: 100%;
  }

  .op-scope .operations-asset-mobile-flow .op-table thead {
    display: none;
  }

  .op-scope .operations-asset-mobile-flow .op-table tbody {
    display: grid;
    gap: 12px;
  }

  .op-scope .operations-asset-mobile-flow .op-table tr {
    background: var(--op-white);
    border: 1px solid var(--op-slate-200);
    border-radius: var(--op-radius);
    display: grid;
    overflow: hidden;
  }

  .op-scope .operations-asset-mobile-flow .op-table td {
    align-items: start;
    border: 0;
    border-bottom: 1px solid var(--op-slate-200);
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(88px, 0.36fr) minmax(0, 1fr);
    padding: 12px;
  }

  .op-scope .operations-asset-mobile-flow .op-table td:last-child {
    border-bottom: 0;
  }

  .op-scope .operations-asset-mobile-flow .op-table td::before {
    color: var(--op-slate-500);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .op-scope .operations-asset-mobile-flow .op-table td[colspan],
  .op-scope .operations-asset-mobile-flow .op-table td:first-child {
    display: block;
  }

  .op-scope .operations-asset-mobile-flow .op-table td[colspan]::before {
    content: "";
    display: none;
  }
}

@media (max-width: 640px) {
  .op-scope .op-form-grid.op-controlled-record-filter-grid {
    grid-template-columns: 1fr;
  }

  .op-scope .product-library-search,
  .op-scope .product-library-specs,
  .op-scope .op-resource-filter-grid {
    grid-template-columns: 1fr;
  }

  .op-scope .scenario-row {
    grid-template-columns: 1fr;
  }

  .op-scope .scenario-row-action {
    justify-content: flex-start;
  }

  .op-scope .quiz-topic-row {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .op-scope .quiz-topic-row .op-status {
    grid-column: 2;
    justify-self: start;
  }

  .op-scope .quiz-topic-row .op-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .op-scope .vehicle-check-item,
  .op-scope .vehicle-check-submit-bar {
    grid-template-columns: 1fr;
  }

  .op-scope .vehicle-check-progress-panel,
  .op-scope .vehicle-check-compact-grid {
    grid-template-columns: 1fr;
  }

  .op-scope .vehicle-check-segments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .op-scope .vehicle-check-header {
    grid-template-columns: 1fr;
  }

  .op-scope .vehicle-check-header > .op-status {
    justify-self: start;
  }

  .op-scope .vehicle-check-submit-bar {
    align-items: stretch;
    display: grid;
    bottom: 8px;
  }

  .op-scope .vehicle-check-completion {
    grid-template-columns: 1fr;
  }

  .op-scope .vehicle-check-submit-bar .op-button {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .op-scope,
  .op-scope *,
  .op-scope *::before,
  .op-scope *::after {
    min-width: 0;
  }

  .op-scope {
    max-width: 100%;
    overflow-x: hidden;
  }

  .op-scope .op-page {
    max-width: 100%;
    padding: 12px;
  }

  .op-scope .op-stack {
    gap: 14px;
  }

  .op-scope .op-stack--lg {
    gap: 16px;
  }

  .op-scope .op-page-header,
  .op-scope .op-card,
  .op-scope .op-panel {
    max-width: 100%;
  }

  .op-scope .op-page-header {
    gap: 14px;
    padding: 16px;
  }

  .op-scope .op-page-header__top {
    display: grid;
    gap: 12px;
  }

  .op-scope .op-title {
    font-size: clamp(1.42rem, 1.18rem + 0.86vw, 1.72rem);
    line-height: 1.14;
  }

  .op-scope .op-section-title {
    font-size: 1.03rem;
  }

  .op-scope .op-card-title {
    font-size: 0.96rem;
  }

  .op-scope .op-body {
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .op-scope .op-card-grid,
  .op-scope .op-card-grid--compact,
  .op-scope .op-resource-grid--count-2,
  .op-scope .operations-home-metrics,
  .op-scope .operations-home-launch-grid,
  .op-scope .operations-skills-gap-grid,
  .op-scope .product-detail-grid,
  .op-scope .document-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .op-card,
  .op-scope .op-resource-card {
    min-height: auto;
    padding: 16px;
  }

  .op-scope .op-resource-card .op-body {
    max-width: none;
  }

  .op-scope .op-stat-strip {
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .op-stat-cell {
    min-height: 82px;
    padding: 14px;
  }

  .op-scope .op-stat-cell + .op-stat-cell {
    border-left: 0;
    border-top: 1px solid var(--op-slate-200);
  }

  .op-scope .op-pill-row,
  .op-scope .op-action-row,
  .op-scope .op-filter-row {
    gap: 6px;
    max-width: 100%;
  }

  .op-scope .op-pill,
  .op-scope .op-status,
  .op-scope .op-button {
    max-width: 100%;
    white-space: normal;
  }

  .op-scope .platform-help {
    position: static;
  }

  .op-scope .platform-help__popover {
    bottom: 16px;
    left: 16px;
    max-width: calc(100vw - 32px);
    min-width: 0;
    position: fixed;
    right: 16px;
    top: auto;
  }

  .op-scope .bulk-assignment-results li {
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .op-pill {
    font-size: 0.76rem;
    min-height: 28px;
    padding: 0 8px;
  }

  .op-scope .op-pill__count {
    padding: 3px 6px;
  }

  .op-scope .op-table-wrap,
  .op-scope .op-table-scroll {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .op-scope .op-table {
    min-width: 560px;
  }

  .op-scope .qualification-op-table,
  .op-scope .resource-register-table,
  .op-scope .resource-register-table--wide,
  .op-scope .operations-report-preview-table,
  .op-scope .operations-vehicle-fleet-table,
  .op-scope .operations-asset-register-table,
  .op-scope .operations-engineer-selection-table,
  .op-scope .operations-calendar-table,
  .op-scope .operations-report-library-table,
  .op-scope .operations-report-history-table,
  .op-scope .operations-activity-log-table {
    min-width: 560px;
  }

  .op-scope .op-table th,
  .op-scope .op-table td {
    padding: 10px 12px;
  }

  .op-scope .resource-register-panel .op-table-wrap,
  .op-scope .qualification-op-table {
    overflow: visible;
  }

  .op-scope .qualification-op-table,
  .op-scope .resource-register-table,
  .op-scope .resource-register-table--wide {
    border: 0;
    display: block;
    min-width: 0;
    width: 100%;
  }

  .op-scope .qualification-op-table thead,
  .op-scope .resource-register-table thead,
  .op-scope .resource-register-table--wide thead {
    display: none;
  }

  .op-scope .qualification-op-table tbody,
  .op-scope .resource-register-table tbody,
  .op-scope .resource-register-table--wide tbody {
    display: grid;
    gap: 12px;
  }

  .op-scope .qualification-op-table tr,
  .op-scope .resource-register-table tr,
  .op-scope .resource-register-table--wide tr {
    background: var(--op-white);
    border: 1px solid var(--op-slate-200);
    border-radius: var(--op-radius);
    display: grid;
    gap: 0;
    overflow: hidden;
  }

  .op-scope .qualification-op-table td,
  .op-scope .resource-register-table td,
  .op-scope .resource-register-table--wide td {
    align-items: start;
    border: 0;
    border-bottom: 1px solid var(--op-slate-200);
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(88px, 0.36fr) minmax(0, 1fr);
    padding: 12px;
  }

  .op-scope .qualification-op-table td:last-child,
  .op-scope .resource-register-table td:last-child,
  .op-scope .resource-register-table--wide td:last-child {
    border-bottom: 0;
  }

  .op-scope .qualification-op-table td::before,
  .op-scope .resource-register-table td::before,
  .op-scope .resource-register-table--wide td::before {
    color: var(--op-slate-500);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .op-scope .qualification-op-table td > *,
  .op-scope .resource-register-table td > *,
  .op-scope .resource-register-table--wide td > * {
    min-width: 0;
  }

  .op-scope .qualification-op-table td:first-child,
  .op-scope .resource-register-table td:first-child,
  .op-scope .resource-register-table--wide td:first-child {
    display: block;
  }

  .op-scope .qualification-op-table td:first-child::before,
  .op-scope .resource-register-table td:first-child::before,
  .op-scope .resource-register-table--wide td:first-child::before {
    display: block;
    margin-bottom: 6px;
  }

  .op-scope .resource-register-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .op-scope .resource-register-actions .op-button {
    width: 100%;
  }

  .op-scope .audit-finding-table,
  .op-scope .audit-register-table,
  .op-scope .audit-results-table,
  .op-scope .assigned-vehicle-compliance-table,
  .op-scope .assigned-vehicle-detail-table,
  .op-scope .assigned-vehicle-record-table,
  .op-scope .op-controlled-records-table,
  .op-scope .operations-activity-log-table,
  .op-scope .operations-asset-register-table,
  .op-scope .operations-calendar-table,
  .op-scope .operations-engineer-selection-table,
  .op-scope .operations-evidence-history-table,
  .op-scope .operations-fleet-history-table,
  .op-scope .operations-report-history-table,
  .op-scope .operations-report-library-table,
  .op-scope .operations-report-preview-table,
  .op-scope .operations-review-workload-table,
  .op-scope .operations-vehicle-defect-history-table,
  .op-scope .operations-vehicle-document-links-table,
  .op-scope .operations-vehicle-fleet-table,
  .op-scope .operations-vehicle-linked-documents-table,
  .op-scope .operations-vehicle-safety-history-table,
  .op-scope .operations-vehicle-service-history-table,
  .op-scope .review-queue-table {
    border: 0;
    display: block;
    min-width: 0;
    width: 100%;
  }

  .op-scope .audit-finding-table thead,
  .op-scope .audit-register-table thead,
  .op-scope .audit-results-table thead,
  .op-scope .assigned-vehicle-compliance-table thead,
  .op-scope .assigned-vehicle-detail-table thead,
  .op-scope .assigned-vehicle-record-table thead,
  .op-scope .op-controlled-records-table thead,
  .op-scope .operations-activity-log-table thead,
  .op-scope .operations-asset-register-table thead,
  .op-scope .operations-calendar-table thead,
  .op-scope .operations-engineer-selection-table thead,
  .op-scope .operations-evidence-history-table thead,
  .op-scope .operations-fleet-history-table thead,
  .op-scope .operations-report-history-table thead,
  .op-scope .operations-report-library-table thead,
  .op-scope .operations-report-preview-table thead,
  .op-scope .operations-review-workload-table thead,
  .op-scope .operations-vehicle-defect-history-table thead,
  .op-scope .operations-vehicle-document-links-table thead,
  .op-scope .operations-vehicle-fleet-table thead,
  .op-scope .operations-vehicle-linked-documents-table thead,
  .op-scope .operations-vehicle-safety-history-table thead,
  .op-scope .operations-vehicle-service-history-table thead,
  .op-scope .review-queue-table thead {
    display: none;
  }

  .op-scope .audit-finding-table tbody,
  .op-scope .audit-register-table tbody,
  .op-scope .audit-results-table tbody,
  .op-scope .assigned-vehicle-compliance-table tbody,
  .op-scope .assigned-vehicle-detail-table tbody,
  .op-scope .assigned-vehicle-record-table tbody,
  .op-scope .op-controlled-records-table tbody,
  .op-scope .operations-activity-log-table tbody,
  .op-scope .operations-asset-register-table tbody,
  .op-scope .operations-calendar-table tbody,
  .op-scope .operations-engineer-selection-table tbody,
  .op-scope .operations-evidence-history-table tbody,
  .op-scope .operations-fleet-history-table tbody,
  .op-scope .operations-report-history-table tbody,
  .op-scope .operations-report-library-table tbody,
  .op-scope .operations-report-preview-table tbody,
  .op-scope .operations-review-workload-table tbody,
  .op-scope .operations-vehicle-defect-history-table tbody,
  .op-scope .operations-vehicle-document-links-table tbody,
  .op-scope .operations-vehicle-fleet-table tbody,
  .op-scope .operations-vehicle-linked-documents-table tbody,
  .op-scope .operations-vehicle-safety-history-table tbody,
  .op-scope .operations-vehicle-service-history-table tbody,
  .op-scope .review-queue-table tbody {
    display: grid;
    gap: 12px;
  }

  .op-scope .audit-finding-table tr,
  .op-scope .audit-register-table tr,
  .op-scope .audit-results-table tr,
  .op-scope .assigned-vehicle-compliance-table tr,
  .op-scope .assigned-vehicle-detail-table tr,
  .op-scope .assigned-vehicle-record-table tr,
  .op-scope .op-controlled-records-table tr,
  .op-scope .operations-activity-log-table tr,
  .op-scope .operations-asset-register-table tr,
  .op-scope .operations-calendar-table tr,
  .op-scope .operations-engineer-selection-table tr,
  .op-scope .operations-evidence-history-table tr,
  .op-scope .operations-fleet-history-table tr,
  .op-scope .operations-report-history-table tr,
  .op-scope .operations-report-library-table tr,
  .op-scope .operations-report-preview-table tr,
  .op-scope .operations-review-workload-table tr,
  .op-scope .operations-vehicle-defect-history-table tr,
  .op-scope .operations-vehicle-document-links-table tr,
  .op-scope .operations-vehicle-fleet-table tr,
  .op-scope .operations-vehicle-linked-documents-table tr,
  .op-scope .operations-vehicle-safety-history-table tr,
  .op-scope .operations-vehicle-service-history-table tr,
  .op-scope .review-queue-table tr {
    background: var(--op-white);
    border: 1px solid var(--op-slate-200);
    border-radius: var(--op-radius);
    display: grid;
    gap: 0;
    overflow: hidden;
  }

  .op-scope .audit-finding-table td,
  .op-scope .audit-register-table td,
  .op-scope .audit-results-table td,
  .op-scope .assigned-vehicle-compliance-table td,
  .op-scope .assigned-vehicle-detail-table td,
  .op-scope .assigned-vehicle-record-table td,
  .op-scope .op-controlled-records-table td,
  .op-scope .operations-activity-log-table td,
  .op-scope .operations-asset-register-table td,
  .op-scope .operations-calendar-table td,
  .op-scope .operations-engineer-selection-table td,
  .op-scope .operations-evidence-history-table td,
  .op-scope .operations-fleet-history-table td,
  .op-scope .operations-report-history-table td,
  .op-scope .operations-report-library-table td,
  .op-scope .operations-report-preview-table td,
  .op-scope .operations-review-workload-table td,
  .op-scope .operations-vehicle-defect-history-table td,
  .op-scope .operations-vehicle-document-links-table td,
  .op-scope .operations-vehicle-fleet-table td,
  .op-scope .operations-vehicle-linked-documents-table td,
  .op-scope .operations-vehicle-safety-history-table td,
  .op-scope .operations-vehicle-service-history-table td,
  .op-scope .review-queue-table td {
    align-items: start;
    border: 0;
    border-bottom: 1px solid var(--op-slate-200);
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(88px, 0.36fr) minmax(0, 1fr);
    padding: 12px;
  }

  .op-scope .audit-finding-table td:last-child,
  .op-scope .audit-register-table td:last-child,
  .op-scope .audit-results-table td:last-child,
  .op-scope .assigned-vehicle-compliance-table td:last-child,
  .op-scope .assigned-vehicle-detail-table td:last-child,
  .op-scope .assigned-vehicle-record-table td:last-child,
  .op-scope .op-controlled-records-table td:last-child,
  .op-scope .operations-activity-log-table td:last-child,
  .op-scope .operations-asset-register-table td:last-child,
  .op-scope .operations-calendar-table td:last-child,
  .op-scope .operations-engineer-selection-table td:last-child,
  .op-scope .operations-evidence-history-table td:last-child,
  .op-scope .operations-fleet-history-table td:last-child,
  .op-scope .operations-report-history-table td:last-child,
  .op-scope .operations-report-library-table td:last-child,
  .op-scope .operations-report-preview-table td:last-child,
  .op-scope .operations-review-workload-table td:last-child,
  .op-scope .operations-vehicle-defect-history-table td:last-child,
  .op-scope .operations-vehicle-document-links-table td:last-child,
  .op-scope .operations-vehicle-fleet-table td:last-child,
  .op-scope .operations-vehicle-linked-documents-table td:last-child,
  .op-scope .operations-vehicle-safety-history-table td:last-child,
  .op-scope .operations-vehicle-service-history-table td:last-child,
  .op-scope .review-queue-table td:last-child {
    border-bottom: 0;
  }

  .op-scope .audit-finding-table td::before,
  .op-scope .audit-register-table td::before,
  .op-scope .audit-results-table td::before,
  .op-scope .assigned-vehicle-compliance-table td::before,
  .op-scope .assigned-vehicle-detail-table td::before,
  .op-scope .assigned-vehicle-record-table td::before,
  .op-scope .op-controlled-records-table td::before,
  .op-scope .operations-activity-log-table td::before,
  .op-scope .operations-asset-register-table td::before,
  .op-scope .operations-calendar-table td::before,
  .op-scope .operations-engineer-selection-table td::before,
  .op-scope .operations-evidence-history-table td::before,
  .op-scope .operations-fleet-history-table td::before,
  .op-scope .operations-report-history-table td::before,
  .op-scope .operations-report-library-table td::before,
  .op-scope .operations-report-preview-table td::before,
  .op-scope .operations-review-workload-table td::before,
  .op-scope .operations-vehicle-defect-history-table td::before,
  .op-scope .operations-vehicle-document-links-table td::before,
  .op-scope .operations-vehicle-fleet-table td::before,
  .op-scope .operations-vehicle-linked-documents-table td::before,
  .op-scope .operations-vehicle-safety-history-table td::before,
  .op-scope .operations-vehicle-service-history-table td::before,
  .op-scope .review-queue-table td::before {
    color: var(--op-slate-500);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .op-scope .audit-finding-table td > *,
  .op-scope .audit-register-table td > *,
  .op-scope .audit-results-table td > *,
  .op-scope .assigned-vehicle-compliance-table td > *,
  .op-scope .assigned-vehicle-detail-table td > *,
  .op-scope .assigned-vehicle-record-table td > *,
  .op-scope .op-controlled-records-table td > *,
  .op-scope .operations-activity-log-table td > *,
  .op-scope .operations-asset-register-table td > *,
  .op-scope .operations-calendar-table td > *,
  .op-scope .operations-engineer-selection-table td > *,
  .op-scope .operations-evidence-history-table td > *,
  .op-scope .operations-fleet-history-table td > *,
  .op-scope .operations-report-history-table td > *,
  .op-scope .operations-report-library-table td > *,
  .op-scope .operations-report-preview-table td > *,
  .op-scope .operations-review-workload-table td > *,
  .op-scope .operations-vehicle-defect-history-table td > *,
  .op-scope .operations-vehicle-document-links-table td > *,
  .op-scope .operations-vehicle-fleet-table td > *,
  .op-scope .operations-vehicle-linked-documents-table td > *,
  .op-scope .operations-vehicle-safety-history-table td > *,
  .op-scope .operations-vehicle-service-history-table td > *,
  .op-scope .review-queue-table td > * {
    min-width: 0;
  }

  .op-scope .audit-finding-table td:first-child,
  .op-scope .audit-register-table td:first-child,
  .op-scope .audit-results-table td:first-child,
  .op-scope .assigned-vehicle-compliance-table td:first-child,
  .op-scope .assigned-vehicle-detail-table td:first-child,
  .op-scope .assigned-vehicle-record-table td:first-child,
  .op-scope .op-controlled-records-table td:first-child,
  .op-scope .operations-activity-log-table td:first-child,
  .op-scope .operations-asset-register-table td:first-child,
  .op-scope .operations-calendar-table td:first-child,
  .op-scope .operations-engineer-selection-table td:first-child,
  .op-scope .operations-evidence-history-table td:first-child,
  .op-scope .operations-fleet-history-table td:first-child,
  .op-scope .operations-report-history-table td:first-child,
  .op-scope .operations-report-library-table td:first-child,
  .op-scope .operations-report-preview-table td:first-child,
  .op-scope .operations-review-workload-table td:first-child,
  .op-scope .operations-vehicle-defect-history-table td:first-child,
  .op-scope .operations-vehicle-document-links-table td:first-child,
  .op-scope .operations-vehicle-fleet-table td:first-child,
  .op-scope .operations-vehicle-linked-documents-table td:first-child,
  .op-scope .operations-vehicle-safety-history-table td:first-child,
  .op-scope .operations-vehicle-service-history-table td:first-child,
  .op-scope .review-queue-table td:first-child {
    display: block;
  }

  .op-scope .audit-finding-table td:first-child::before,
  .op-scope .audit-register-table td:first-child::before,
  .op-scope .audit-results-table td:first-child::before,
  .op-scope .assigned-vehicle-compliance-table td:first-child::before,
  .op-scope .assigned-vehicle-detail-table td:first-child::before,
  .op-scope .assigned-vehicle-record-table td:first-child::before,
  .op-scope .op-controlled-records-table td:first-child::before,
  .op-scope .operations-activity-log-table td:first-child::before,
  .op-scope .operations-asset-register-table td:first-child::before,
  .op-scope .operations-calendar-table td:first-child::before,
  .op-scope .operations-engineer-selection-table td:first-child::before,
  .op-scope .operations-evidence-history-table td:first-child::before,
  .op-scope .operations-fleet-history-table td:first-child::before,
  .op-scope .operations-report-history-table td:first-child::before,
  .op-scope .operations-report-library-table td:first-child::before,
  .op-scope .operations-report-preview-table td:first-child::before,
  .op-scope .operations-review-workload-table td:first-child::before,
  .op-scope .operations-vehicle-defect-history-table td:first-child::before,
  .op-scope .operations-vehicle-document-links-table td:first-child::before,
  .op-scope .operations-vehicle-fleet-table td:first-child::before,
  .op-scope .operations-vehicle-linked-documents-table td:first-child::before,
  .op-scope .operations-vehicle-safety-history-table td:first-child::before,
  .op-scope .operations-vehicle-service-history-table td:first-child::before,
  .op-scope .review-queue-table td:first-child::before {
    display: block;
    margin-bottom: 6px;
  }

  .op-scope .audit-finding-table td[colspan],
  .op-scope .audit-register-table td[colspan],
  .op-scope .audit-results-table td[colspan],
  .op-scope .assigned-vehicle-compliance-table td[colspan],
  .op-scope .assigned-vehicle-detail-table td[colspan],
  .op-scope .assigned-vehicle-record-table td[colspan],
  .op-scope .op-controlled-records-table td[colspan],
  .op-scope .operations-activity-log-table td[colspan],
  .op-scope .operations-asset-register-table td[colspan],
  .op-scope .operations-calendar-table td[colspan],
  .op-scope .operations-engineer-selection-table td[colspan],
  .op-scope .operations-evidence-history-table td[colspan],
  .op-scope .operations-fleet-history-table td[colspan],
  .op-scope .operations-report-history-table td[colspan],
  .op-scope .operations-report-library-table td[colspan],
  .op-scope .operations-report-preview-table td[colspan],
  .op-scope .operations-review-workload-table td[colspan],
  .op-scope .operations-vehicle-defect-history-table td[colspan],
  .op-scope .operations-vehicle-document-links-table td[colspan],
  .op-scope .operations-vehicle-fleet-table td[colspan],
  .op-scope .operations-vehicle-linked-documents-table td[colspan],
  .op-scope .operations-vehicle-safety-history-table td[colspan],
  .op-scope .operations-vehicle-service-history-table td[colspan],
  .op-scope .review-queue-table td[colspan] {
    display: block;
  }

  .op-scope .audit-finding-table td[colspan]::before,
  .op-scope .audit-register-table td[colspan]::before,
  .op-scope .audit-results-table td[colspan]::before,
  .op-scope .assigned-vehicle-compliance-table td[colspan]::before,
  .op-scope .assigned-vehicle-detail-table td[colspan]::before,
  .op-scope .assigned-vehicle-record-table td[colspan]::before,
  .op-scope .op-controlled-records-table td[colspan]::before,
  .op-scope .operations-activity-log-table td[colspan]::before,
  .op-scope .operations-asset-register-table td[colspan]::before,
  .op-scope .operations-calendar-table td[colspan]::before,
  .op-scope .operations-engineer-selection-table td[colspan]::before,
  .op-scope .operations-evidence-history-table td[colspan]::before,
  .op-scope .operations-fleet-history-table td[colspan]::before,
  .op-scope .operations-report-history-table td[colspan]::before,
  .op-scope .operations-report-library-table td[colspan]::before,
  .op-scope .operations-report-preview-table td[colspan]::before,
  .op-scope .operations-review-workload-table td[colspan]::before,
  .op-scope .operations-vehicle-defect-history-table td[colspan]::before,
  .op-scope .operations-vehicle-document-links-table td[colspan]::before,
  .op-scope .operations-vehicle-fleet-table td[colspan]::before,
  .op-scope .operations-vehicle-linked-documents-table td[colspan]::before,
  .op-scope .operations-vehicle-safety-history-table td[colspan]::before,
  .op-scope .operations-vehicle-service-history-table td[colspan]::before,
  .op-scope .review-queue-table td[colspan]::before {
    content: "";
    display: none;
  }

  .op-scope .audit-register-table .op-button,
  .op-scope .operations-calendar-table select,
  .op-scope .operations-engineer-selection-table .op-button,
  .op-scope .operations-report-library-table .op-button,
  .op-scope .operations-report-history-table .op-button,
  .op-scope .review-queue-table .op-button {
    width: 100%;
  }

  .op-scope .admin-vehicle-assignment-history-table {
    border: 0;
    display: block;
    min-width: 0;
    width: 100%;
  }

  .op-scope .admin-vehicle-assignment-history-table thead {
    display: none;
  }

  .op-scope .admin-vehicle-assignment-history-table tbody {
    display: grid;
    gap: 12px;
  }

  .op-scope .admin-vehicle-assignment-history-table tr {
    background: var(--op-white);
    border: 1px solid var(--op-slate-200);
    border-radius: var(--op-radius);
    display: grid;
    overflow: hidden;
  }

  .op-scope .admin-vehicle-assignment-history-table td {
    align-items: start;
    border: 0;
    border-bottom: 1px solid var(--op-slate-200);
    display: grid;
    gap: 6px;
    grid-template-columns: minmax(88px, 0.36fr) minmax(0, 1fr);
    padding: 12px;
  }

  .op-scope .admin-vehicle-assignment-history-table td:last-child {
    border-bottom: 0;
  }

  .op-scope .admin-vehicle-assignment-history-table td::before {
    color: var(--op-slate-500);
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    line-height: 1.35;
    text-transform: uppercase;
  }

  .op-scope .admin-vehicle-assignment-history-table td > * {
    min-width: 0;
  }

  .op-scope .admin-vehicle-assignment-history-table td:first-child {
    display: block;
  }

  .op-scope .admin-vehicle-assignment-history-table td:first-child::before {
    display: block;
    margin-bottom: 6px;
  }

  .op-scope .admin-vehicle-assignment-history-table td[colspan] {
    display: block;
  }

  .op-scope .admin-vehicle-assignment-history-table td[colspan]::before {
    content: "";
    display: none;
  }

  .op-scope .review-evidence-audit-trail-table,
  .op-scope .review-evidence-detail-table,
  .op-scope .review-evidence-impact-table,
  .op-scope .review-evidence-previous-decisions-table {
    border: 0;
    display: block;
    min-width: 0;
    width: 100%;
  }

  .op-scope .review-evidence-audit-trail-table tbody,
  .op-scope .review-evidence-detail-table tbody,
  .op-scope .review-evidence-impact-table tbody,
  .op-scope .review-evidence-previous-decisions-table tbody {
    display: grid;
    gap: 10px;
  }

  .op-scope .review-evidence-audit-trail-table tr,
  .op-scope .review-evidence-detail-table tr,
  .op-scope .review-evidence-impact-table tr,
  .op-scope .review-evidence-previous-decisions-table tr {
    background: var(--op-white);
    border: 1px solid var(--op-slate-200);
    border-radius: var(--op-radius-sm);
    display: grid;
    overflow: hidden;
  }

  .op-scope .review-evidence-audit-trail-table th,
  .op-scope .review-evidence-audit-trail-table td,
  .op-scope .review-evidence-detail-table th,
  .op-scope .review-evidence-detail-table td,
  .op-scope .review-evidence-impact-table th,
  .op-scope .review-evidence-impact-table td,
  .op-scope .review-evidence-previous-decisions-table th,
  .op-scope .review-evidence-previous-decisions-table td {
    border: 0;
    display: block;
    min-width: 0;
    padding: 10px 12px;
  }

  .op-scope .review-evidence-audit-trail-table th,
  .op-scope .review-evidence-detail-table th,
  .op-scope .review-evidence-impact-table th,
  .op-scope .review-evidence-previous-decisions-table th {
    background: var(--op-slate-50);
    color: var(--op-slate-500);
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-align: left;
    text-transform: uppercase;
  }

  .op-scope .vehicle-safety-check-form,
  .op-scope .vehicle-check-section,
  .op-scope .vehicle-check-accordion,
  .op-scope .vehicle-check-list,
  .op-scope .vehicle-check-item {
    max-width: 100%;
  }

  .op-scope .vehicle-check-section--compact,
  .op-scope .vehicle-check-item {
    padding: 12px;
  }

  .op-scope .vehicle-check-accordion summary {
    align-items: start;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
  }

  .op-scope .vehicle-check-accordion summary span:first-child {
    overflow-wrap: anywhere;
  }

  .op-scope .vehicle-check-accordion summary .op-status {
    justify-self: start;
  }

  .op-scope .vehicle-check-segments {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .op-scope .vehicle-check-status {
    min-height: 46px;
    padding: 9px 8px;
  }

  .op-scope .vehicle-check-submit-bar {
    position: static;
    box-shadow: var(--op-shadow-xs);
  }
}
