/* Human Verification Test Status Badges */
.status-passed {
  background-color: #2e7d32;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85em;
  white-space: nowrap;
}

.status-pending {
  background-color: #e65100;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85em;
  white-space: nowrap;
}

.status-failed {
  background-color: #c62828;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85em;
  white-space: nowrap;
}

.status-deferred {
  background-color: #546e7a;
  color: #fff;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.85em;
  white-space: nowrap;
}

/* Dark mode adjustments */
[data-md-color-scheme="slate"] .status-passed {
  background-color: #43a047;
}

[data-md-color-scheme="slate"] .status-pending {
  background-color: #ef6c00;
}

[data-md-color-scheme="slate"] .status-failed {
  background-color: #e53935;
}

[data-md-color-scheme="slate"] .status-deferred {
  background-color: #78909c;
}
