:root {
  --page-bg: #0f141b;
  --panel-bg: #151b24;
  --panel-bg-2: #111821;
  --table-head: #1d2632;
  --line: #2b3544;
  --line-soft: #202938;
  --text: #e6eaf0;
  --text-muted: #98a2b3;
  --accent: #4f8cff;
  --online-color: #54d68a;
  --busy-color: #74a8ff;
  --queue-color: #ff8aa5;
  --submit-color: #ffd166;
  --operation-create-color: #2dd4bf;
  --operation-release-color: #f97316;
}

html,
body {
  min-height: 100%;
}

body {
  background: var(--page-bg);
  color: var(--text);
  font-size: 14px;
}

.navbar,
main.container-fluid {
  width: 80vw;
  max-width: 1680px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

.navbar > .container-fluid {
  width: 100%;
}

main.container-fluid {
  padding-top: 24px !important;
  padding-bottom: 24px !important;
}

@media (max-width: 900px) {
  .navbar,
  main.container-fluid {
    width: 100%;
  }
}

.navbar {
  min-height: 52px;
  background: rgba(15, 20, 27, 0.96);
  border-color: var(--line) !important;
  backdrop-filter: blur(10px);
}

.metric-card,
.table-shell,
.table-title,
.table-pager,
.table-actions .btn,
.queue-search-bar,
.queue-metric-grid div,
.metric-rate-grid div,
.metric-submit-grid div,
.progress,
#workerTable tbody tr,
#queueTable tbody tr {
  transition:
    background-color 0.16s ease,
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    color 0.16s ease,
    transform 0.16s ease;
}

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

@media (min-width: 768px) {
  .metric-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .metric-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.metric-card,
.toolbar,
.message-panel,
.table-shell,
.trend-shell {
  border-color: var(--line) !important;
  background: var(--panel-bg);
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  min-height: 92px;
}

.metric-card:hover {
  border-color: rgba(79, 140, 255, 0.58) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.metric-label {
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 6px;
}

.navbar-brand .bi,
.table-title .bi,
.metric-label .bi {
  color: var(--accent);
}

.metric-value {
  color: #f7f9fc;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0;
}

.metric-unit {
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 600;
  margin-left: 3px;
}

.metric-note {
  color: var(--text-muted);
  font-size: 12px;
  margin-top: 6px;
  min-height: 16px;
}

.online-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--online-color);
  box-shadow: 0 0 0 3px rgba(84, 214, 138, 0.15);
  vertical-align: 0.05em;
}

.metric-online {
  border-color: rgba(84, 214, 138, 0.6) !important;
  background: linear-gradient(180deg, rgba(25, 135, 84, 0.24), var(--panel-bg));
}

.metric-online .metric-label,
.metric-online .metric-value {
  color: var(--online-color);
}

.metric-online:hover {
  border-color: rgba(84, 214, 138, 0.85) !important;
  box-shadow: 0 12px 28px rgba(84, 214, 138, 0.12);
}

.metric-busy {
  border-color: rgba(79, 140, 255, 0.65) !important;
  background: linear-gradient(180deg, rgba(79, 140, 255, 0.24), var(--panel-bg));
}

.metric-busy .metric-label,
.metric-busy .metric-value {
  color: var(--busy-color);
}

.metric-busy:hover {
  border-color: rgba(116, 168, 255, 0.9) !important;
  box-shadow: 0 12px 28px rgba(79, 140, 255, 0.15);
}

.metric-free {
  border-color: rgba(255, 99, 132, 0.65) !important;
  background: linear-gradient(180deg, rgba(255, 99, 132, 0.22), var(--panel-bg));
}

.metric-free .metric-label,
.metric-free .metric-value {
  color: #ff8aa5;
}

.metric-free:hover {
  border-color: rgba(255, 138, 165, 0.9) !important;
  box-shadow: 0 12px 28px rgba(255, 99, 132, 0.14);
}

.metric-offline {
  border-color: rgba(148, 163, 184, 0.45) !important;
  background: linear-gradient(180deg, rgba(100, 116, 139, 0.24), var(--panel-bg));
}

.metric-offline .metric-label,
.metric-offline .metric-value {
  color: #94a3b8;
}

.metric-clear {
  border-color: rgba(45, 212, 191, 0.62) !important;
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.16), var(--panel-bg));
}

.metric-clear .metric-label,
.metric-clear .metric-value {
  color: #5eead4;
}

.metric-clear:hover {
  border-color: rgba(94, 234, 212, 0.9) !important;
  box-shadow: 0 12px 28px rgba(45, 212, 191, 0.12);
}

.metric-clear-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6px;
}

.metric-clear-grid div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--panel-bg-2);
  padding: 6px 8px;
  text-align: left;
}

.metric-clear-time {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.metric-clear-grid strong {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  color: #5eead4;
  font-size: 18px;
  line-height: 1.1;
}

.metric-clear-grid strong span {
  white-space: nowrap;
}

.metric-clear-grid small {
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 700;
  margin-right: 2px;
}

.metric-rate {
  grid-column: 1 / -1;
}

.metric-submit {
  grid-column: span 2;
  border-color: rgba(255, 209, 102, 0.62) !important;
  background: linear-gradient(180deg, rgba(255, 209, 102, 0.18), var(--panel-bg));
}

.metric-submit .metric-label,
.metric-submit .metric-submit-grid strong {
  color: var(--submit-color);
}

.metric-submit:hover {
  border-color: rgba(255, 209, 102, 0.9) !important;
  box-shadow: 0 12px 28px rgba(255, 209, 102, 0.12);
}

.metric-rate-grid,
.metric-submit-grid {
  display: grid;
  gap: 8px;
}

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

.metric-submit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 6px;
}

.metric-rate-grid div,
.metric-submit-grid div {
  min-width: 0;
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  background: var(--panel-bg-2);
  padding: 6px 4px;
  text-align: center;
}

.metric-rate-grid div:hover,
.metric-submit-grid div:hover,
.queue-metric-grid div:hover {
  border-color: rgba(79, 140, 255, 0.55);
  background: #172232;
  box-shadow: inset 0 0 0 1px rgba(79, 140, 255, 0.16);
  transform: translateY(-1px);
}

.metric-rate-grid strong,
.metric-submit-grid strong {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: #f7f9fc;
  font-size: 20px;
  line-height: 1.1;
}

.metric-submit-grid strong {
  font-size: 20px;
}

.metric-submit-grid .metric-unit {
  font-size: 13px;
}

.metric-rate-grid strong {
  font-size: 28px;
}

.metric-rate-grid .metric-unit {
  font-size: 15px;
}

.metric-rate-grid > div > span,
.metric-submit-grid > div > span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.2;
  margin-top: 3px;
}

.metric-submit-grid > div > span {
  font-size: 12px;
}

.metric-rate-grid > div > span {
  font-size: 13px;
  margin-top: 5px;
}

@media (max-width: 640px) {
  .metric-rate-grid,
  .metric-submit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .metric-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .metric-online,
  .metric-busy,
  .metric-free {
    grid-column: auto;
    min-width: 0;
    padding: 10px 8px;
  }

  .metric-online .metric-label,
  .metric-busy .metric-label,
  .metric-free .metric-label {
    font-size: 11px;
    margin-bottom: 5px;
    white-space: nowrap;
  }

  .metric-online .metric-value,
  .metric-busy .metric-value,
  .metric-free .metric-value {
    font-size: 20px;
  }

  .metric-online .metric-note,
  .metric-busy .metric-note,
  .metric-free .metric-note {
    font-size: 10px;
    line-height: 1.25;
  }

  .metric-rate,
  .metric-clear {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1200px) {
  .metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) minmax(210px, 0.72fr);
    align-items: stretch;
  }

  .metric-card {
    padding: 10px;
    min-height: 128px;
  }

  .metric-clear {
    grid-column: 6;
    grid-row: 1;
  }

  .metric-submit,
  .metric-rate {
    grid-column: auto;
  }

  .metric-submit-grid,
  .metric-rate-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 5px;
  }

  .metric-rate-grid div:last-child {
    grid-column: 1 / -1;
  }

  .metric-submit-grid div,
  .metric-rate-grid div,
  .metric-clear-grid div {
    padding: 5px 6px;
  }

  .metric-submit-grid div {
    padding-left: 3px;
    padding-right: 3px;
  }

  .metric-rate-grid strong,
  .metric-submit-grid strong {
    font-size: 16px;
  }

  .metric-submit-grid strong {
    font-size: 14px;
  }

  .metric-rate-grid .metric-unit,
  .metric-submit-grid .metric-unit {
    font-size: 11px;
  }

  .metric-submit-grid .metric-unit {
    font-size: 10px;
  }

  .metric-rate-grid > div > span,
  .metric-submit-grid > div > span {
    font-size: 11px;
    margin-top: 2px;
  }

  .metric-clear-grid {
    gap: 5px;
  }

  .metric-clear-grid div {
    grid-template-columns: 46px minmax(0, 1fr);
    gap: 5px;
  }

  .metric-clear-grid strong {
    font-size: 16px;
    gap: 3px;
  }

  .metric-clear-grid small,
  .metric-clear-time {
    font-size: 10px;
  }
}

@media (min-width: 1200px) {
  body[data-page="compact"] .metric-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.form-control,
.form-select,
.input-group-text {
  border-color: var(--line);
  background-color: var(--panel-bg-2);
  color: var(--text-muted);
}

.form-control:focus,
.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 0.15rem rgba(79, 140, 255, 0.25);
}

.queue-search-bar {
  padding: 8px 12px;
  background: var(--panel-bg);
  border-color: var(--line) !important;
}

.queue-search-bar:hover {
  background: #172030;
}

.table-shell {
  overflow: hidden;
  min-width: 0;
}

.table-shell:hover,
.trend-shell:hover {
  border-color: rgba(79, 140, 255, 0.46) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.trend-shell {
  overflow: hidden;
}

.trend-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  background: var(--panel-bg);
  border-color: var(--line) !important;
}

.trend-title .bi {
  color: var(--accent);
}

.trend-title .fw-semibold {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.trend-title #trendInfo {
  flex-shrink: 0;
  text-align: right;
  white-space: nowrap;
}

.trend-legend {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--text-muted);
  font-size: 12px;
  border-color: var(--line) !important;
}

.trend-legend span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.trend-dot {
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 999px;
}

.trend-online {
  background: var(--online-color);
}

.trend-busy {
  background: var(--busy-color);
}

.trend-submit {
  background: var(--submit-color);
}

.trend-queue {
  background: var(--queue-color);
}

.trend-operation-create {
  background: var(--operation-create-color);
}

.trend-operation-release {
  background: var(--operation-release-color);
}

.trend-canvas-wrap {
  position: relative;
  height: 240px;
  padding: 8px 10px 10px;
  background: var(--panel-bg-2);
}

.trend-tooltip {
  position: absolute;
  z-index: 3;
  min-width: 148px;
  border: 1px solid rgba(152, 162, 179, 0.28);
  border-radius: 8px;
  background: rgba(15, 20, 27, 0.96);
  color: var(--text);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.36);
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.35;
  pointer-events: none;
}

.trend-tooltip-title {
  color: #f7f9fc;
  font-weight: 700;
  margin-bottom: 5px;
}

.trend-tooltip-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--text-muted);
}

.trend-tooltip-row strong {
  color: #f7f9fc;
  font-weight: 700;
}

#trendChart {
  display: block;
  width: 100%;
  height: 100%;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(0, 42%);
  gap: 12px;
  align-items: start;
}

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

.table-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  min-height: 42px;
  padding: 0 12px;
  background: var(--panel-bg);
  border-color: var(--line) !important;
}

.table-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.table-actions .btn {
  min-width: 64px;
}

.table-actions .btn:hover {
  transform: translateY(-1px);
}

.table-actions .btn:disabled,
.table-actions .btn.disabled {
  opacity: 0.28;
  color: var(--text-muted);
  border-color: rgba(152, 162, 179, 0.28);
  background-color: transparent;
  transform: none;
}

.table-actions .btn:disabled:hover,
.table-actions .btn.disabled:hover {
  transform: none;
  box-shadow: none;
}

.table-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 8px 12px;
  background: var(--panel-bg);
  border-color: var(--line) !important;
}

.page-querying {
  display: inline-block;
  margin-left: 8px;
  color: var(--submit-color);
  font-weight: 700;
}

.table-responsive {
  max-height: calc(100vh - 300px);
  min-height: 360px;
  overflow: auto;
}

#workerTable {
  min-width: 520px;
  table-layout: fixed;
  --bs-table-bg: var(--panel-bg);
  --bs-table-color: var(--text);
  --bs-table-border-color: var(--line-soft);
  --bs-table-hover-bg: #1a2230;
  --bs-table-hover-color: #fff;
}

#workerTable .col-machine { width: 60px; }
#workerTable .col-view { width: 100px; }
#workerTable .col-message { width: 60px; }
#workerTable .col-progress { width: 90px; }
#workerTable .col-time { width: 94px; }
#workerTable .col-estimate { width: 96px; }

#queueTable {
  min-width: 990px;
  table-layout: fixed;
  --bs-table-bg: var(--panel-bg);
  --bs-table-color: var(--text);
  --bs-table-border-color: var(--line-soft);
  --bs-table-hover-bg: #1a2230;
  --bs-table-hover-color: #fff;
}

#queueTable .queue-task-id { width: 98px; }
#queueTable .queue-project { width: 210px; }
#queueTable .queue-task { width: 150px; }
#queueTable .queue-user { width: 130px; }
#queueTable .queue-priority { width: 58px; }
#queueTable .queue-submit { width: 170px; }
#queueTable .queue-wait { width: 120px; }

#queueTable tbody tr[data-queue-task-id] {
  cursor: pointer;
}

#workerTable thead th,
#queueTable thead th {
  position: sticky;
  top: 0;
  z-index: 4;
  background: var(--table-head);
  color: #cbd5e1;
  white-space: nowrap;
  cursor: default;
  border-bottom: 1px solid var(--line);
  height: 38px;
}

#workerTable thead th[data-sort],
#queueTable thead th[data-sort] {
  cursor: pointer;
  user-select: none;
}

#workerTable thead th[data-sort]::after,
#queueTable thead th[data-sort]::after {
  content: "↕";
  float: right;
  margin-left: 6px;
  color: #94a3b8;
  font-size: 10px;
  opacity: 0.45;
}

#workerTable thead th[data-sort].sort-asc::after,
#queueTable thead th[data-sort].sort-asc::after {
  content: "▲";
  color: #74a8ff;
  opacity: 0.95;
}

#workerTable thead th[data-sort].sort-desc::after,
#queueTable thead th[data-sort].sort-desc::after {
  content: "▼";
  color: #74a8ff;
  opacity: 0.95;
}

#workerTable thead th[data-sort]:hover,
#queueTable thead th[data-sort]:hover {
  color: #fff;
  background: #1f2a3a;
}

#workerTable thead th[data-sort]:focus-visible,
#queueTable thead th[data-sort]:focus-visible {
  outline: 2px solid rgba(116, 168, 255, 0.75);
  outline-offset: -2px;
}

#workerTable th,
#workerTable td,
#queueTable th,
#queueTable td {
  padding: 8px 10px;
  vertical-align: middle;
  border-right: 1px solid var(--line-soft);
}

#workerTable th:last-child,
#workerTable td:last-child,
#queueTable th:last-child,
#queueTable td:last-child {
  border-right: 0;
}

#workerTable td,
#queueTable td {
  height: 54px;
}

.queue-metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-color: var(--line) !important;
}

.queue-metric-grid div {
  padding: 10px 12px;
  border-right: 1px solid var(--line-soft);
}

.queue-metric-grid div:last-child {
  border-right: 0;
}

.queue-metric-grid span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  margin-bottom: 4px;
}

.queue-metric-grid strong {
  display: block;
  color: #f7f9fc;
  font-size: 18px;
  line-height: 1.15;
}

.queue-error {
  padding: 8px 12px;
  border-bottom: 1px solid var(--line);
  color: #ffb4ba;
  background: rgba(220, 53, 69, 0.12);
  font-size: 12px;
}

.cell-main {
  font-weight: 600;
  line-height: 1.25;
  min-width: 0;
}

.cell-sub {
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.25;
  margin-top: 2px;
  min-width: 0;
}

.text-cut {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.progress {
  height: 8px;
  border-radius: 4px;
  background: #263142;
}

.progress:hover {
  background: #314058;
  box-shadow: 0 0 0 1px rgba(79, 140, 255, 0.22);
}

.progress-bar {
  background-color: var(--accent);
}

.message-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  max-height: 84px;
  overflow: auto;
}

.message-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-bg-2);
  padding: 3px 8px;
  font-size: 12px;
  max-width: 100%;
}

.message-pill span:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.issue-ok {
  color: #54d68a;
}

.row-danger td {
  background: rgba(220, 53, 69, 0.14) !important;
}

.row-warning td {
  background: rgba(255, 193, 7, 0.12) !important;
}

.worker-time-danger,
.worker-time-danger .cell-main {
  color: #ff5f6d !important;
  font-weight: 700;
}

#workerTable tbody tr:hover td,
#queueTable tbody tr:hover td {
  background: #1f2a3a !important;
  color: #fff;
}

#queueTable tbody tr.queue-empty-row:hover td {
  background: var(--panel-bg) !important;
}

.queue-empty-search {
  color: #ffd166 !important;
  font-size: 18px;
  font-weight: 700;
}

#queueTable tbody tr.queue-selected td {
  background: rgba(79, 140, 255, 0.06) !important;
  border-top: 1px solid rgba(116, 168, 255, 0.95) !important;
  border-bottom: 1px solid rgba(116, 168, 255, 0.95) !important;
  color: #fff;
  box-shadow:
    inset 0 1px 0 rgba(116, 168, 255, 0.35),
    inset 0 -1px 0 rgba(116, 168, 255, 0.35);
}

#queueTable tbody tr.queue-selected td:first-child {
  border-left: 2px solid rgba(116, 168, 255, 0.95) !important;
  box-shadow:
    inset 2px 0 0 rgba(116, 168, 255, 0.45),
    inset 0 1px 0 rgba(116, 168, 255, 0.35),
    inset 0 -1px 0 rgba(116, 168, 255, 0.35);
}

#queueTable tbody tr.queue-selected td:last-child {
  border-right: 2px solid rgba(116, 168, 255, 0.95) !important;
}

#queueTable tbody tr.queue-selected:hover td {
  background: rgba(79, 140, 255, 0.1) !important;
}

.queue-context-menu {
  position: fixed;
  z-index: 1080;
  min-width: 176px;
  overflow: hidden;
  border: 1px solid rgba(79, 140, 255, 0.46);
  border-radius: 8px;
  background: #151b24;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.38);
  padding: 4px;
}

.queue-context-title {
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  padding: 8px 10px 7px;
}

.queue-context-menu button {
  display: block;
  width: 100%;
  border: 0;
  border-top: 1px solid var(--line-soft);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
  text-align: left;
  padding: 8px 10px;
}

.queue-context-menu button:hover {
  background: rgba(79, 140, 255, 0.2);
  color: #fff;
}

.queue-context-menu button:first-of-type {
  border-top-color: var(--line);
}

.queue-toast {
  display: block;
  border: 1px solid rgba(84, 214, 138, 0.45);
  background: #151b24;
  color: var(--text);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.16s ease, transform 0.16s ease;
}

.queue-toast.queue-toast-visible,
.queue-toast.show {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.queue-toast .toast-header {
  border-bottom-color: var(--line-soft);
  background: #172232;
  color: var(--text);
}

.queue-toast .bi {
  color: #54d68a;
}

@media (prefers-reduced-motion: reduce) {
  .metric-card,
  .table-shell,
  .table-title,
  .table-pager,
  .table-actions .btn,
  .queue-search-bar,
  .queue-metric-grid div,
  .metric-rate-grid div,
  .metric-submit-grid div,
  .progress,
  #workerTable tbody tr,
  #queueTable tbody tr {
    transition: none;
  }

  .metric-card:hover,
  .table-actions .btn:hover,
  .metric-rate-grid div:hover,
  .metric-submit-grid div:hover,
  .queue-metric-grid div:hover {
    transform: none;
  }
}

.mono {
  font-family: Consolas, "Liberation Mono", monospace;
}

.nowrap {
  white-space: nowrap;
}

.badge {
  font-weight: 600;
}
