/* Office dispatch operations: progress, issue actions, and exact meter history. */

.dispatch-ops-page,
.dispatch-ops-page *,
.dispatch-ops-page *::before,
.dispatch-ops-page *::after {
  box-sizing: border-box;
}

.dispatch-ops-page {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: start;
  gap: 14px;
  color: var(--ref-text, #eaf5ff);
  overflow-wrap: anywhere;
}

.dispatch-ops-page[hidden] {
  display: none !important;
}

.dispatch-ops-page :is(h1, h2, h3, p) {
  margin: 0;
}

.dispatch-ops-page :is(button, input, select, textarea) {
  font: inherit;
}

.dispatch-ops-page code {
  color: #d8efff;
  font-family: "Cascadia Mono", "SFMono-Regular", Consolas, monospace;
  font-size: .92em;
  overflow-wrap: anywhere;
  white-space: normal;
}

.dispatch-ops-header {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 2px 15px;
  border-bottom: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
}

.dispatch-ops-header > div:first-child {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.dispatch-ops-header h1 {
  color: var(--ref-text, #eaf5ff);
  font-size: clamp(22px, 2.2vw, 31px);
  line-height: 1.2;
}

.dispatch-ops-header p,
.dispatch-ops-section-heading p {
  color: var(--ref-muted, #8fa8c1);
  font-size: 11px;
  line-height: 1.45;
}

.dispatch-ops-eyebrow {
  display: block;
  color: var(--ref-cyan, #66d7ff);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.25;
  text-transform: uppercase;
}

.dispatch-ops-header-actions {
  min-width: 0;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.dispatch-ops-panel,
.dispatch-ops-summary,
.dispatch-ops-evidence {
  min-width: 0;
  max-width: 100%;
  border: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
  border-radius: 15px;
  background: linear-gradient(145deg, rgba(16, 48, 78, .94), rgba(6, 25, 45, .95));
  box-shadow: inset 0 1px rgba(255, 255, 255, .025), 0 10px 24px rgba(1, 13, 28, .15);
}

.dispatch-ops-evidence {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px 12px 18px;
  border-color: rgba(102, 215, 255, .3);
  background: rgba(12, 45, 72, .72);
  overflow: hidden;
}

.dispatch-ops-evidence::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--ref-cyan, #66d7ff);
  box-shadow: 0 0 12px rgba(102, 215, 255, .65);
}

.dispatch-ops-evidence strong {
  color: var(--ref-cyan, #66d7ff);
  font-size: 12px;
  font-weight: 900;
}

.dispatch-ops-evidence span {
  min-width: 0;
  color: #bad0e3;
  font-size: 11px;
  line-height: 1.55;
}

.dispatch-ops-button {
  min-width: 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 14px;
  border: 1px solid rgba(147, 202, 255, .34);
  border-radius: 10px;
  color: var(--ref-text, #eaf5ff);
  background: rgba(9, 31, 54, .9);
  font-size: 12px;
  font-weight: 850;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.dispatch-ops-button:hover:not(:disabled) {
  border-color: rgba(102, 215, 255, .75);
  background: rgba(20, 58, 94, .98);
}

.dispatch-ops-button:active:not(:disabled) {
  transform: translateY(1px);
}

.dispatch-ops-button:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.dispatch-ops-button--primary {
  border-color: rgba(113, 194, 255, .66);
  color: #fff;
  background: linear-gradient(145deg, #5aa8ff, #176be5 52%, #07449f);
  box-shadow: inset 0 1px rgba(255, 255, 255, .26), 0 7px 16px rgba(0, 73, 176, .25);
}

.dispatch-ops-button--secondary {
  color: var(--ref-muted, #9bb0c4);
  background: rgba(6, 23, 41, .82);
}

.dispatch-ops-button.is-active,
.dispatch-ops-button[aria-pressed="true"] {
  border-color: var(--ref-cyan, #66d7ff);
  color: var(--ref-cyan, #66d7ff);
  background: rgba(33, 92, 139, .5);
  box-shadow: inset 0 0 0 1px rgba(102, 215, 255, .32);
}

.dispatch-ops-page :is(button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid rgba(128, 226, 255, .94);
  outline-offset: 2px;
}

.dispatch-ops-form,
.dispatch-ops-filters {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  padding: 13px;
}

.dispatch-ops-filters--issues {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dispatch-ops-form label,
.dispatch-ops-filters label,
.dispatch-ops-meter-search label {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 5px;
}

.dispatch-ops-form label > span,
.dispatch-ops-filters label > span,
.dispatch-ops-meter-search label > span {
  color: var(--ref-text, #eaf5ff);
  font-size: 11px;
  font-weight: 850;
  line-height: 1.3;
}

.dispatch-ops-page :is(input, select, textarea) {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 0 11px;
  border: 1px solid rgba(147, 202, 255, .34);
  border-radius: 9px;
  color: var(--ref-text, #eaf5ff);
  background: #071b35;
  font-size: 13px;
  line-height: 1.35;
}

.dispatch-ops-page input::placeholder,
.dispatch-ops-page textarea::placeholder {
  color: #6f88a0;
  opacity: 1;
}

.dispatch-ops-page textarea {
  min-height: 96px;
  padding-top: 10px;
  padding-bottom: 10px;
  resize: vertical;
}

.dispatch-ops-form-span {
  grid-column: 1 / -1;
}

.dispatch-ops-filter-actions,
.dispatch-ops-form-actions {
  min-width: 0;
  display: flex;
  align-items: end;
  gap: 8px;
  flex-wrap: wrap;
}

.dispatch-ops-access {
  width: min(720px, 100%);
  justify-self: center;
  display: grid;
  gap: 12px;
  padding: 24px;
}

.dispatch-ops-access h2 {
  color: var(--ref-text, #eaf5ff);
  font-size: 22px;
}

.dispatch-ops-access > p {
  color: var(--ref-muted, #8fa8c1);
  font-size: 13px;
  line-height: 1.6;
}

.dispatch-ops-access .dispatch-ops-form {
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  padding: 0;
}

.dispatch-ops-feedback {
  min-width: 0;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(104, 178, 232, .3);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 750;
  line-height: 1.5;
}

.dispatch-ops-feedback--error {
  border-color: rgba(255, 98, 123, .5);
  color: #ffd7de;
  background: rgba(91, 20, 42, .5);
}

.dispatch-ops-feedback--success {
  border-color: rgba(86, 230, 174, .42);
  color: var(--ref-green, #56e6ae);
  background: rgba(7, 65, 54, .42);
}

.dispatch-ops-feedback--warning {
  border-color: rgba(255, 197, 108, .46);
  color: #ffe1af;
  background: rgba(83, 55, 13, .48);
}

.dispatch-ops-summary {
  display: grid;
  grid-template-columns: repeat(9, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--ref-line, rgba(92, 151, 203, .24));
}

.dispatch-ops-stat {
  position: relative;
  min-width: 0;
  min-height: 96px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 13px;
  overflow: hidden;
  background: rgba(7, 28, 50, .98);
}

.dispatch-ops-stat::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--ref-cyan, #66d7ff);
  opacity: .75;
}

.dispatch-ops-stat--attention::before {
  background: #ff8093;
}

.dispatch-ops-stat span {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.35;
}

.dispatch-ops-stat strong {
  min-width: 0;
  color: var(--ref-text, #eaf5ff);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.dispatch-ops-section-heading {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
}

.dispatch-ops-section-heading > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.dispatch-ops-section-heading h2 {
  color: var(--ref-text, #eaf5ff);
  font-size: 17px;
  line-height: 1.25;
}

.dispatch-ops-section-heading h3 {
  color: var(--ref-text, #eaf5ff);
  font-size: 15px;
  line-height: 1.25;
}

.dispatch-ops-list-panel,
.dispatch-ops-detail-panel {
  overflow: hidden;
}

.dispatch-ops-table-region {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.dispatch-ops-table {
  width: 100%;
  min-width: 0;
  table-layout: fixed;
  border-collapse: collapse;
  color: var(--ref-text, #eaf5ff);
  font-size: 12px;
}

.dispatch-ops-table th,
.dispatch-ops-table td {
  min-width: 0;
  padding: 10px 9px;
  border-bottom: 1px solid rgba(104, 170, 220, .15);
  text-align: left;
  vertical-align: middle;
  overflow-wrap: anywhere;
}

.dispatch-ops-table th {
  color: var(--ref-muted, #8fa8c1);
  background: rgba(18, 72, 123, .3);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
}

.dispatch-ops-table tbody tr {
  background: rgba(5, 21, 38, .34);
  transition: background-color .15s ease;
}

.dispatch-ops-table tbody tr:hover,
.dispatch-ops-table tbody tr.is-selected {
  background: rgba(38, 94, 138, .34);
}

.dispatch-ops-table td strong,
.dispatch-ops-table td small,
.dispatch-ops-table td time {
  display: block;
}

.dispatch-ops-table td small {
  margin-top: 3px;
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
}

.dispatch-ops-decision {
  min-width: 0;
  display: grid;
  gap: 2px;
  margin-top: 6px;
  padding: 6px;
  border-left: 2px solid var(--ref-cyan, #66d7ff);
  border-radius: 0 7px 7px 0;
  background: rgba(28, 78, 116, .3);
}

.dispatch-ops-decision small {
  margin-top: 0 !important;
  overflow-wrap: anywhere;
}

.dispatch-ops-decision b {
  color: var(--ref-cyan, #66d7ff);
}

.dispatch-ops-decision--legacy {
  display: block;
  border-left-color: var(--ref-muted, #8fa8c1);
  color: var(--ref-muted, #8fa8c1) !important;
}

.dispatch-ops-badge {
  min-width: 0;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 4px 8px;
  border: 1px solid currentColor;
  border-radius: 999px;
  background: rgba(4, 20, 37, .58);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.dispatch-ops-tone--good { color: var(--ref-green, #56e6ae); }
.dispatch-ops-tone--cyan { color: var(--ref-cyan, #66d7ff); }
.dispatch-ops-tone--blue { color: #82b8ff; }
.dispatch-ops-tone--wait,
.dispatch-ops-tone--warning { color: var(--ref-amber, #ffc56c); }
.dispatch-ops-tone--hot { color: #ff8093; }
.dispatch-ops-tone--muted { color: var(--ref-muted, #8fa8c1); }

.dispatch-ops-text--danger {
  color: #ff9bab !important;
  font-weight: 850;
}

.dispatch-ops-load-more {
  display: flex;
  justify-content: center;
  padding: 12px;
}

.dispatch-ops-empty,
.dispatch-ops-loading {
  min-height: 172px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 9px;
  padding: 24px;
  color: var(--ref-muted, #8fa8c1);
  text-align: center;
}

.dispatch-ops-empty strong,
.dispatch-ops-loading strong {
  color: var(--ref-text, #eaf5ff);
  font-size: 14px;
}

.dispatch-ops-empty span {
  max-width: 620px;
  font-size: 12px;
  line-height: 1.55;
}

.dispatch-ops-spinner {
  width: 30px;
  height: 30px;
  border: 3px solid rgba(102, 215, 255, .2);
  border-top-color: var(--ref-cyan, #66d7ff);
  border-radius: 50%;
  animation: dispatchOpsSpin .8s linear infinite;
}

@keyframes dispatchOpsSpin {
  to { transform: rotate(360deg); }
}

.dispatch-ops-two-column {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 14px;
  align-items: start;
}

.dispatch-ops-issue-list {
  min-width: 0;
  display: grid;
  gap: 0;
}

.dispatch-ops-issue-row {
  width: 100%;
  min-width: 0;
  min-height: 64px;
  display: grid;
  grid-template-columns: minmax(170px, 2fr) minmax(82px, .7fr) minmax(70px, .6fr) minmax(100px, .8fr) minmax(115px, .9fr) minmax(70px, .5fr);
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 0;
  border-bottom: 1px solid rgba(104, 170, 220, .15);
  color: var(--ref-text, #eaf5ff);
  background: rgba(5, 21, 38, .34);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background-color .15s ease, box-shadow .15s ease;
}

.dispatch-ops-issue-row:hover,
.dispatch-ops-issue-row.is-selected {
  background: rgba(38, 94, 138, .38);
}

.dispatch-ops-issue-row.is-selected {
  box-shadow: inset 3px 0 var(--ref-cyan, #66d7ff);
}

.dispatch-ops-issue-row > span {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.dispatch-ops-issue-row strong,
.dispatch-ops-issue-row small {
  min-width: 0;
  overflow-wrap: anywhere;
}

.dispatch-ops-issue-row strong {
  font-size: 12px;
}

.dispatch-ops-issue-row small {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
}

.dispatch-ops-detail-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.dispatch-ops-detail-grid > div {
  min-width: 0;
  min-height: 72px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 10px;
  border: 1px solid rgba(104, 170, 220, .16);
  border-radius: 10px;
  background: rgba(5, 21, 38, .46);
}

.dispatch-ops-detail-grid > div > span {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
  font-weight: 850;
}

.dispatch-ops-detail-grid > div > :is(strong, code, time) {
  min-width: 0;
  color: var(--ref-text, #eaf5ff);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.dispatch-ops-detail-description {
  margin: 0 12px 12px !important;
  padding: 11px 12px;
  border: 1px solid rgba(104, 170, 220, .16);
  border-radius: 10px;
  color: #c9daea;
  background: rgba(5, 21, 38, .42);
  font-size: 12px;
  line-height: 1.55;
}

.dispatch-ops-subsection,
.dispatch-ops-issue-actions {
  min-width: 0;
  border-top: 1px solid var(--ref-line, rgba(92, 151, 203, .24));
}

.dispatch-ops-action-buttons {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  padding: 12px;
}

.dispatch-ops-action-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding-top: 0;
}

.dispatch-ops-action-hint {
  margin: 0 12px 12px !important;
  padding: 11px 12px;
  border: 1px dashed rgba(104, 170, 220, .3);
  border-radius: 10px;
  color: var(--ref-muted, #8fa8c1);
  background: rgba(6, 24, 43, .48);
  font-size: 11px;
  line-height: 1.55;
}

.dispatch-ops-action-form .dispatch-ops-action-hint {
  margin: 0 !important;
}

.dispatch-ops-timeline-list {
  min-width: 0;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 12px 16px 16px;
  list-style: none;
}

.dispatch-ops-timeline-item {
  position: relative;
  min-width: 0;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  padding: 0 0 16px;
}

.dispatch-ops-timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: -2px;
  left: 8px;
  width: 1px;
  background: rgba(111, 173, 222, .28);
}

.dispatch-ops-timeline-dot {
  position: relative;
  z-index: 1;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  border: 4px solid #0c2946;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 9px currentColor;
}

.dispatch-ops-timeline-body {
  min-width: 0;
  display: grid;
  gap: 6px;
  padding: 10px 11px;
  border: 1px solid rgba(104, 170, 220, .16);
  border-radius: 10px;
  color: var(--ref-text, #eaf5ff);
  background: rgba(5, 21, 38, .44);
}

.dispatch-ops-timeline-body > div:first-child {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dispatch-ops-timeline-body strong {
  min-width: 0;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.dispatch-ops-timeline-body time,
.dispatch-ops-timeline-body small {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
}

.dispatch-ops-timeline-body p {
  color: #c9daea;
  font-size: 11px;
  line-height: 1.5;
}

.dispatch-ops-event-badges {
  min-width: 0;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 6px !important;
  flex-wrap: wrap;
}

.dispatch-ops-meter-search {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
  padding: 13px;
}

.dispatch-ops-assignment-cards {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
  padding: 12px;
}

.dispatch-ops-assignment-card {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 7px;
  padding: 11px;
  border: 1px solid rgba(104, 170, 220, .17);
  border-radius: 11px;
  background: rgba(5, 21, 38, .46);
}

.dispatch-ops-assignment-card > div {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.dispatch-ops-assignment-card > span,
.dispatch-ops-assignment-card > small {
  color: var(--ref-muted, #8fa8c1);
  font-size: 10px;
  line-height: 1.45;
}

@media (max-width: 1280px) {
  .dispatch-ops-summary {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .dispatch-ops-two-column {
    grid-template-columns: minmax(0, 1fr);
  }

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

@media (max-width: 1100px) {
  .dispatch-ops-form,
  .dispatch-ops-filters,
  .dispatch-ops-filters--issues {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .dispatch-ops-issue-row {
    grid-template-columns: minmax(170px, 2fr) repeat(2, minmax(80px, .8fr));
  }

  .dispatch-ops-issue-row > span:nth-child(n + 4) {
    padding-top: 7px;
    border-top: 1px solid rgba(104, 170, 220, .12);
  }

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

@media (max-width: 900px) {
  .dispatch-ops-header,
  .dispatch-ops-section-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .dispatch-ops-header-actions {
    justify-content: flex-start;
  }

  .dispatch-ops-table,
  .dispatch-ops-table tbody {
    display: block;
  }

  .dispatch-ops-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
  }

  .dispatch-ops-table tbody {
    padding: 10px;
  }

  .dispatch-ops-table tbody tr {
    min-width: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 12px;
    margin-bottom: 10px;
    padding: 11px;
    border: 1px solid rgba(104, 170, 220, .18);
    border-radius: 11px;
  }

  .dispatch-ops-table td {
    display: grid;
    align-content: start;
    gap: 3px;
    padding: 0;
    border: 0;
  }

  .dispatch-ops-table td::before {
    content: attr(data-label);
    color: var(--ref-muted, #8fa8c1);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: .04em;
  }

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

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

@media (max-width: 700px) {
  .dispatch-ops-form,
  .dispatch-ops-filters,
  .dispatch-ops-filters--issues,
  .dispatch-ops-access .dispatch-ops-form,
  .dispatch-ops-action-form,
  .dispatch-ops-summary,
  .dispatch-ops-assignment-cards,
  .dispatch-ops-detail-grid,
  .dispatch-ops-table tbody tr {
    grid-template-columns: minmax(0, 1fr);
  }

  .dispatch-ops-evidence,
  .dispatch-ops-meter-search {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .dispatch-ops-issue-row-main {
    grid-column: 1 / -1;
  }

  .dispatch-ops-issue-row > span:nth-child(n + 2) {
    padding-top: 7px;
    border-top: 1px solid rgba(104, 170, 220, .12);
  }

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

  .dispatch-ops-form-actions,
  .dispatch-ops-filter-actions,
  .dispatch-ops-header-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .dispatch-ops-form-actions .dispatch-ops-button,
  .dispatch-ops-filter-actions .dispatch-ops-button,
  .dispatch-ops-header-actions .dispatch-ops-button,
  .dispatch-ops-meter-search .dispatch-ops-button {
    width: 100%;
  }

  .dispatch-ops-access {
    padding: 18px 14px;
  }

  .dispatch-ops-timeline-list {
    padding-inline: 12px;
  }

  .dispatch-ops-timeline-body > div:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}

@media (max-width: 480px) {
  .dispatch-ops-issue-row,
  .dispatch-ops-action-buttons {
    grid-template-columns: minmax(0, 1fr);
  }

  .dispatch-ops-issue-row > span {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dispatch-ops-spinner {
    animation: none !important;
  }

  .dispatch-ops-button,
  .dispatch-ops-table tbody tr,
  .dispatch-ops-issue-row {
    transition: none !important;
  }
}
