/* ================================================================
   Proxy Checker Panel — NodeMaven design system
   Matches: rounded cards, colored gradient accents, clean fields
   ================================================================ */

.pc-hidden { display: none !important; }

/* ── Wrapper ── */
.pc-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 12px 16px 48px;
  scroll-margin-top: 96px;
}
@media (min-width: 681px)  { .pc-wrap { padding: 18px 24px 56px; } }
@media (min-width: 1081px) { .pc-wrap { padding: 20px 0 64px; } }

/* ── Card shell (light glass — background shows through) ── */
.pc-card {
  position: relative;
  border-radius: var(--body-border-radius, 28px);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.72) 0%,
    rgba(255, 255, 255, 0.52) 45%,
    rgba(248, 250, 255, 0.58) 100%
  );
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.85),
    0 2px 16px rgba(15, 23, 42, 0.06),
    0 12px 40px -12px rgba(99, 102, 241, 0.12);
  overflow: hidden;
}

/* Checker only: dropdown extends below the form; must not clip or sit under Results */
#proxy-checker .pc-card {
  overflow: visible;
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
  .pc-card {
    background: rgba(255, 255, 255, 0.94);
  }
}

/* ── Card body ── */
.pc-card__body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 681px)  { .pc-card__body { padding: 28px 32px; } }
@media (min-width: 1081px) { .pc-card__body { padding: 32px 40px; } }

/* Wide screens: settings + results read as one unit (no “orphan” button column). */
@media (min-width: 960px) {
  #proxy-checker.pc-wrap {
    max-width: 960px;
  }
  #proxy-checker .pc-card__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 24px 28px;
    align-items: start;
  }
  #proxy-checker .pc-results {
    align-self: start !important;
    position: relative;
    top: 0;
    margin-top: 0 !important;
  }
}

/* ── Form section (glass slab — no heavy outer outline) ── */
.pc-form {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 18px 16px;
  border-radius: 18px;
  background: linear-gradient(
    165deg,
    rgba(239, 246, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.4) 42%,
    rgba(219, 234, 254, 0.38) 100%
  );
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 2px 16px rgba(15, 23, 42, 0.05);
}
@media (min-width: 640px) {
  .pc-form { padding: 22px 22px; }
}

#proxy-checker .pc-form {
  position: relative;
  z-index: 2;
}
#proxy-checker .pc-results {
  position: relative;
  z-index: 1;
}

.pc-form__group-title {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #475569;
}
.pc-form__group-title:not(:first-child) {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

/* ── Grid ── */
.pc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.pc-grid > label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-width: 0;
}
@media (min-width: 640px) {
  .pc-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 12px 14px; }
  .pc-span-1 { grid-column: span 1; }
  .pc-span-2 { grid-column: span 2; }
  .pc-span-3 { grid-column: span 3; }
}

/* ── Labels ── */
.pc-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #334155;
  margin-bottom: 6px;
}
.pc-label .pc-muted {
  text-transform: none;
  letter-spacing: normal;
  font-weight: 500;
  color: #64748b;
}
.pc-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* ── Fields (light blue border / focus ring — not the form shell) ──
   Scope with #proxy-checker so we beat NodeMaven bundle rules like
   input[type=text]:focus { border-color: var(--input-border-focus); } (green). */
#proxy-checker .pc-field {
  width: 100%;
  box-sizing: border-box;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.4;
  color: #0f172a;
  background: #fff;
  border: 1.5px solid #bfdbfe;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s, box-shadow 0.15s;
  /* If any theme rule still reads these vars, keep focus blue */
  --input-border-focus: #60a5fa;
  --input-shadow-focus: 0 0 0 2px rgba(96, 165, 250, 0.45);
}
#proxy-checker .pc-field:hover {
  border-color: #93c5fd;
}
#proxy-checker .pc-field:focus,
#proxy-checker .pc-field:focus-visible {
  border-color: #60a5fa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.45), 0 1px 2px rgba(15, 23, 42, 0.04);
}
#proxy-checker .pc-field::placeholder { color: #64748b; }

#proxy-checker select.pc-field {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  color-scheme: light;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%2360a5fa' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}
#proxy-checker select.pc-field:hover,
#proxy-checker select.pc-field:focus,
#proxy-checker select.pc-field:focus-visible {
  background-color: #fff;
}

/* ── Custom dropdown (MB listbox) ── */
#proxy-checker .pc-dd {
  position: relative;
  width: 100%;
}

#proxy-checker .pc-dd__native {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
  clip-path: inset(50%) !important;
}

#proxy-checker .pc-dd__trigger {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  cursor: pointer;
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.4;
  color: #0f172a;
  background: #fff;
  border: 1.5px solid #bfdbfe;
  outline: none;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
  --input-border-focus: #60a5fa;
  --input-shadow-focus: 0 0 0 2px rgba(96, 165, 250, 0.45);
}

#proxy-checker .pc-dd__trigger:hover {
  border-color: #93c5fd;
}

#proxy-checker .pc-dd__trigger:focus,
#proxy-checker .pc-dd__trigger:focus-visible {
  border-color: #60a5fa;
  outline: none;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.45), 0 1px 2px rgba(15, 23, 42, 0.04);
}

#proxy-checker .pc-dd.is-open .pc-dd__trigger {
  border-color: #60a5fa;
  box-shadow: 0 0 0 2px rgba(96, 165, 250, 0.35), 0 1px 2px rgba(15, 23, 42, 0.04);
}

#proxy-checker .pc-dd__value {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

#proxy-checker .pc-dd__chev {
  flex-shrink: 0;
  display: flex;
  color: #3b82f6;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

#proxy-checker .pc-dd.is-open .pc-dd__chev {
  transform: rotate(180deg);
}

#proxy-checker .pc-dd__panel {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 8px);
  z-index: 50;
  margin: 0;
  padding: 8px;
  list-style: none;
  border-radius: 14px;
  max-height: min(320px, 70vh);
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(226, 232, 240, 0.98) rgba(250, 250, 250, 0.95);
  background: linear-gradient(
    165deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(248, 250, 255, 0.92) 50%,
    rgba(239, 246, 255, 0.94) 100%
  );
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
  border: 1px solid rgba(191, 219, 254, 0.85);
  box-shadow:
    0 4px 6px -1px rgba(15, 23, 42, 0.06),
    0 16px 40px -12px rgba(59, 130, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px) scale(0.97);
  transform-origin: 50% 0;
  transition:
    opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0.28s;
}

#proxy-checker .pc-dd__panel.pc-dd__panel--show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition:
    opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 0s;
}

/* After picking an option: hide immediately (no close animation linger). */
#proxy-checker .pc-dd__panel.pc-dd__panel--hidden-now {
  transition: none !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-8px) scale(0.97);
}

#proxy-checker .pc-dd__panel::-webkit-scrollbar {
  width: 7px;
}
#proxy-checker .pc-dd__panel::-webkit-scrollbar-track {
  margin: 6px 0;
  background: rgba(250, 250, 250, 0.95);
  border-radius: 999px;
}
#proxy-checker .pc-dd__panel::-webkit-scrollbar-thumb {
  background: rgba(226, 232, 240, 0.98);
  border-radius: 999px;
  border: 2px solid transparent;
  background-clip: padding-box;
}
#proxy-checker .pc-dd__panel::-webkit-scrollbar-thumb:hover {
  background: rgba(203, 213, 225, 0.95);
  background-clip: padding-box;
}

#proxy-checker .pc-dd__option {
  margin: 0;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #334155;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease, transform 0.12s ease;
  opacity: 0;
  transform: translateY(-4px);
}

#proxy-checker .pc-dd__panel--show .pc-dd__option {
  animation: pc-dd-opt-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(1) { animation-delay: 0.02s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(2) { animation-delay: 0.04s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(3) { animation-delay: 0.06s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(4) { animation-delay: 0.08s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(5) { animation-delay: 0.1s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(6) { animation-delay: 0.12s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(7) { animation-delay: 0.14s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(8) { animation-delay: 0.16s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(9) { animation-delay: 0.18s; }
#proxy-checker .pc-dd__panel--show .pc-dd__option:nth-child(10) { animation-delay: 0.2s; }

@keyframes pc-dd-opt-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#proxy-checker .pc-dd__option:hover {
  background: rgba(219, 234, 254, 0.65);
  color: #0f172a;
}

#proxy-checker .pc-dd__option[aria-selected="true"] {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.14), rgba(14, 165, 233, 0.12));
  color: #1d4ed8;
  font-weight: 600;
}

#proxy-checker .pc-dd__option:focus {
  outline: none;
  background: rgba(191, 219, 254, 0.75);
}

#proxy-checker .pc-dd__option:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  #proxy-checker .pc-dd__panel,
  #proxy-checker .pc-dd__chev,
  #proxy-checker .pc-dd__trigger {
    transition: none !important;
  }
  #proxy-checker .pc-dd__panel {
    transform: none !important;
  }
  #proxy-checker .pc-dd__panel--show .pc-dd__option {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  #proxy-checker .pc-dd.is-open .pc-dd__chev {
    transform: rotate(180deg);
  }
}

/* ── Button ── */
.pc-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 14px;
  height: 52px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 700;
  font-family: inherit;
  color: #fff;
  background: #0f172a;
  transition: background 0.15s, transform 0.15s, box-shadow 0.18s ease;
  white-space: nowrap;
}
.pc-btn:hover:not(:disabled) {
  background: #1e293b;
  transform: translateY(-1px);
}
.pc-btn:active:not(:disabled) { transform: translateY(0); }
.pc-btn:disabled { opacity: 0.45; cursor: not-allowed; }

/* Primary CTA: full width of the form slab (reads as intentional, not a floating pill). */
#proxy-checker .pc-btn {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  box-shadow:
    0 1px 2px rgba(15, 23, 42, 0.12),
    0 6px 16px -4px rgba(15, 23, 42, 0.22);
}
#proxy-checker .pc-btn:hover:not(:disabled) {
  box-shadow:
    0 2px 4px rgba(15, 23, 42, 0.14),
    0 10px 24px -6px rgba(15, 23, 42, 0.28);
}
#proxy-checker .pc-btn:active:not(:disabled) {
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.14);
}

/* ── Actions: stacked so idle state never leaves a wide empty strip beside the button ── */
.pc-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}

.pc-status {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: #64748b;
  min-height: 1.35rem;
  width: 100%;
  max-width: 36rem;
}

/* ── Results panel (same surface treatment as .pc-form — one visual slab split in two columns) ── */
.pc-results {
  border-radius: 18px;
  background: linear-gradient(
    165deg,
    rgba(239, 246, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.4) 42%,
    rgba(219, 234, 254, 0.38) 100%
  );
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.75),
    0 2px 16px rgba(15, 23, 42, 0.05);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 960px) {
  #proxy-checker .pc-results {
    padding: 20px 18px;
  }
}

.pc-results__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.pc-results__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
}

/* ── Badge ── */
.pc-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  background: #f1f5f9;
  color: #334155;
}
.pc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #94a3b8;
}

/* ── Transfer progress ── */
.pc-results__progress { display: flex; flex-direction: column; gap: 6px; }

.pc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}
.pc-row small { font-size: 12px; font-weight: 500; color: #94a3b8; }
.pc-row span  { font-size: 12px; font-weight: 600; font-variant-numeric: tabular-nums; color: #334155; }

.pc-track {
  position: relative;
  overflow: hidden;
  height: 8px;
  border-radius: 999px;
  background: #e2e8f0;
}
.pc-bar {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #14b8a6, #0ea5e9, #6366f1);
  transition: width 0.35s ease-out;
}
.pc-track.pc-loading::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  animation: pc-shimmer 1.2s ease-in-out infinite;
}
@keyframes pc-shimmer {
  0%   { transform: translateX(-120%); }
  100% { transform: translateX(260%); }
}

/* ── Stats (single column: label | value; nowrap on values for narrow results column) ── */
#proxy-checker .pc-dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  font-size: 13px;
}
#proxy-checker .pc-dl__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 12px;
  align-items: baseline;
  min-width: 0;
  color: #94a3b8;
}
#proxy-checker .pc-dl dt {
  margin: 0;
  font-weight: 500;
  min-width: 0;
}
#proxy-checker .pc-dl dd {
  margin: 0;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #0f172a;
  text-align: right;
  white-space: nowrap;
}

/* Endpoint: only show when a proxy string is present (no orphan em dash). */
#proxy-checker .pc-endpoint-block--empty {
  display: none;
}
#proxy-checker .pc-endpoint-block {
  margin-top: 2px;
  padding-top: 10px;
  border-top: 1px solid rgba(226, 232, 240, 0.85);
}
#proxy-checker .pc-endpoint-block__label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #94a3b8;
  margin-bottom: 4px;
}
#proxy-checker .pc-endpoint {
  margin: 0;
  font-size: 12px;
  color: #475569;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
}

/* ── Show/hide link (match checker sky blue, not teal) ── */
#proxy-checker .pc-link {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  color: #60a5fa;
  cursor: pointer;
  transition: color 0.15s;
}
#proxy-checker .pc-link:hover {
  color: #3b82f6;
}

/* ── Spinner ── */
.pc-icon-spin { animation: pc-spin 0.85s linear infinite; }
@keyframes pc-spin { to { transform: rotate(360deg); } }

/* ── A11y ── */
@media (prefers-reduced-motion: reduce) {
  .pc-track.pc-loading::after, .pc-icon-spin { animation: none !important; }
}

@media (prefers-reduced-transparency: reduce) {
  .pc-card {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #fff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  }
  .pc-form {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
  }
  .pc-results {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
  }
}

/* ── Multi-proxy list + batch summary ── */
.pc-proxy-block {
  margin-top: 6px;
  width: 100%;
}
.pc-proxy-block__label {
  display: block;
  width: 100%;
  min-width: 0;
}
.pc-hint {
  margin: 2px 0 8px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
}
.pc-hint__mono {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  font-size: 0.8125rem;
  color: #475569;
}

#proxy-checker .pc-field-textarea {
  min-height: 108px;
  resize: vertical;
  font-size: 13px;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  line-height: 1.45;
}

.pc-batch-wrap {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
}
.pc-batch-title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #64748b;
}
.pc-batch-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pc-batch-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
}
.pc-batch-idx {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: #94a3b8;
}
.pc-batch-ep {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  color: #334155;
}
.pc-batch-st {
  font-weight: 600;
  white-space: normal;
  word-break: break-word;
  text-align: right;
  min-width: 0;
  line-height: 1.35;
}
.pc-batch-row--ok .pc-batch-st {
  color: #047857;
}
.pc-batch-row--warn .pc-batch-st {
  color: #b45309;
}
.pc-batch-row--bad .pc-batch-st {
  color: #be123c;
}

.nm-step__mono {
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Menlo, monospace;
  font-size: 0.8125rem;
  color: #475569;
}
