.variance-page-standalone {
  margin: 0;
  background: #252525;
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.variance-page-wrap {
  width: 100%;
  min-width: 0;
  background: #252525;

  &[data-bg="trainer"] {
    background: #111316;
  }
}

.variance-page__section {
  padding: 12px 0 48px;
  background: #252525;

  @media (min-width: 760px) {
    padding: 24px 0 64px;
  }

  @media (min-width: 1200px) {
    padding: 48px 0 96px;
  }
}

.variance-page__container {
  box-sizing: border-box;
  width: 100%;
  max-width: 1228px;
  min-width: 0;
  margin: 0 auto;

  @media (min-width: 760px) {
    padding-right: 24px;
    padding-left: 24px;
  }
}

.variance-page__shell {
  width: 100%;
  max-width: 1160px;
  min-width: 0;
  margin: 0 auto;
}

.variance-page__calculator {
  width: 100%;
  min-width: 0;
  background: rgba(0, 0, 0, 0);
}

.gtvc {
  --gtvc-surface: #111316;
  --gtvc-surface-raised: #191c20;
  --gtvc-surface-active: #2a2d33;
  --gtvc-border: rgba(255, 255, 255, 0.07);
  --gtvc-border-strong: rgba(255, 255, 255, 0.1);
  --gtvc-border-subtle: rgba(255, 255, 255, 0.045);
  --gtvc-text: #f2efe8;
  --gtvc-muted: #b5b0a5;
  --gtvc-faint: #807c74;
  --gtvc-accent: #c99a52;
  --gtvc-green: #59bd84;
  --gtvc-yellow: #d3a34f;
  --gtvc-red: #dc6c61;
  --gtvc-radius-panel: 12px;
  --gtvc-radius-control: 8px;
  --gtvc-radius-active: 6px;
  --gtvc-value-input-width: 5.5ch;
  box-sizing: border-box;
  container-name: calculator;
  container-type: inline-size;
  width: 100%;
  min-width: 0;
  color: var(--gtvc-text);
  font-family: inherit;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  & *,
  & *::before,
  & *::after {
    box-sizing: inherit;
  }

  & :where(button, input, select) {
    font-family: inherit;
  }
}

.gtvc__screen {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  padding: 12px;
  background: rgba(0, 0, 0, 0);

  @media (min-width: 760px) {
    padding: 20px;
  }

  @media (min-width: 1200px) {
    padding: 24px;
  }
}

.gtvc__headline {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.gtvc__controls-panel {
  display: grid;
  gap: 16px;
  container-name: calculator-controls;
  container-type: inline-size;
  width: 100%;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--gtvc-border);
  border-radius: var(--gtvc-radius-panel);
  background: var(--gtvc-surface);

  @media (min-width: 760px) {
    padding: 18px 20px;
  }
}

.gtvc__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 12px;
  align-items: center;
  width: 100%;
  min-width: 0;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--gtvc-border-subtle);
}

.gtvc__toolbar-limit {
  display: grid;
  grid-template-columns: max-content minmax(120px, 1fr);
  grid-column: 1 / -1;
  grid-row: 1;
  gap: 8px;
  align-items: center;
  min-width: 0;
}

.gtvc__control-label {
  color: var(--gtvc-muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.gtvc__select {
  width: 100%;
  min-width: 0;
  height: 38px;
  padding: 0 10px;
  border: 1px solid var(--gtvc-border-strong);
  border-radius: var(--gtvc-radius-control);
  outline: 0;
  background: var(--gtvc-surface-raised);
  color: var(--gtvc-text);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;

  &:focus-visible {
    border-color: var(--gtvc-accent);
    outline: 2px solid var(--gtvc-accent);
    outline-offset: 2px;
  }
}

.gtvc__toolbar-summary {
  display: inline-flex;
  grid-column: 1;
  grid-row: 2;
  align-items: center;
  min-width: 0;
  min-height: 38px;
  overflow: hidden;
  color: #ded9ce;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gtvc__unit-toggle {
  display: inline-flex;
  grid-column: 2;
  grid-row: 2;
  align-items: center;
  min-width: 0;
  height: 38px;
  padding: 3px;
  border: 1px solid var(--gtvc-border-strong);
  border-radius: var(--gtvc-radius-control);
  background: var(--gtvc-surface-raised);
}

.gtvc__unit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 30px;
  padding: 0 11px;
  border: 0;
  border-radius: var(--gtvc-radius-active);
  background: rgba(0, 0, 0, 0);
  color: var(--gtvc-muted);
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;

  &:hover {
    color: var(--gtvc-text);
  }

  &:focus-visible {
    outline: 2px solid var(--gtvc-accent);
    outline-offset: 2px;
  }

  &[aria-pressed="true"] {
    background: var(--gtvc-surface-active);
    color: var(--gtvc-text);
  }
}

.gtvc__format-chips {
  display: flex;
  grid-column: 1 / -1;
  grid-row: 3;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-width: 0;
}

.gtvc__format-group {
  display: inline-flex;
  flex: 0 0 auto;
  gap: 6px;
  align-items: center;
  min-width: 0;
}

.gtvc__format-group-label {
  flex: 0 0 auto;
  color: var(--gtvc-faint);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.gtvc__format-segment {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  height: 38px;
  padding: 3px;
  border: 1px solid var(--gtvc-border-strong);
  border-radius: var(--gtvc-radius-control);
  background: var(--gtvc-surface-raised);
}

.gtvc__format-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 30px;
  padding: 0 8px;
  border: 0;
  border-radius: var(--gtvc-radius-active);
  background: rgba(0, 0, 0, 0);
  color: var(--gtvc-muted);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;

  &:hover {
    color: var(--gtvc-text);
  }

  &:focus-visible {
    outline: 2px solid var(--gtvc-accent);
    outline-offset: 2px;
  }

  &[aria-pressed="true"] {
    background: var(--gtvc-surface-active);
    color: var(--gtvc-text);
  }
}

.gtvc__control-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  min-width: 0;
}

@container calculator-controls (min-width: 480px) {
  .gtvc__control-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gtvc__control:last-child {
    grid-column: 1 / -1;
  }
}

@container calculator-controls (min-width: 500px) {
  .gtvc__toolbar {
    grid-template-columns: minmax(210px, 1fr) minmax(0, 180px) auto;
  }

  .gtvc__toolbar-limit {
    grid-column: 1;
    grid-row: 1;
  }

  .gtvc__toolbar-summary {
    grid-column: 2;
    grid-row: 1;
  }

  .gtvc__unit-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .gtvc__format-chips {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
  }
}

@container calculator-controls (min-width: 624px) {
  .gtvc__control-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gtvc__control:last-child {
    grid-column: auto;
  }
}

@container calculator-controls (min-width: 624px) {
  .gtvc__toolbar {
    grid-template-columns: minmax(300px, 360px) max-content minmax(0, 1fr) auto;
  }

  .gtvc__toolbar-summary {
    grid-column: 2;
  }

  .gtvc__unit-toggle {
    grid-column: 4;
  }
}

@container calculator-controls (min-width: 1000px) {
  .gtvc__toolbar {
    grid-template-columns: minmax(300px, 350px) max-content auto minmax(335px, 1fr);
  }

  .gtvc__unit-toggle {
    grid-column: 3;
    grid-row: 1;
  }

  .gtvc__format-chips {
    grid-column: 4;
    grid-row: 1;
  }
}

.gtvc__control {
  display: grid;
  grid-template-rows: auto 30px auto;
  gap: 8px;
  min-width: 0;
  min-height: 116px;
  padding: 16px;
  border: 0;
  border-radius: var(--gtvc-radius-control);
  background: var(--gtvc-surface-raised);
}

.gtvc__control-top {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  align-items: baseline;
  justify-content: space-between;
  min-width: 0;
}

.gtvc__control-value {
  display: inline-flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  min-width: 0;
  color: var(--gtvc-text);
  white-space: nowrap;
}

.gtvc__val-num {
  color: var(--gtvc-text);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
}

.gtvc__value-input {
  flex: 0 0 var(--gtvc-value-input-width);
  width: var(--gtvc-value-input-width);
  min-width: 0;
  max-width: var(--gtvc-value-input-width);
  height: 32px;
  margin: -2px 0;
  padding: 0 0 2px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  border-radius: 0;
  outline: 0;
  appearance: textfield;
  background: rgba(0, 0, 0, 0);
  text-align: right;
  text-overflow: clip;

  &:focus {
    border-bottom-color: var(--gtvc-accent);
  }

  &:focus-visible {
    outline: 0;
  }
}

.gtvc__val-unit {
  color: var(--gtvc-muted);
  font-size: 13px;
  font-weight: 500;
}

.gtvc__slider-wrap,
.gtvc__br-slider-wrap {
  position: relative;
  display: block;
  min-width: 0;
  height: 30px;
}

/*
 * Keep the painted track independent from the browser-specific range input.
 * A native <progress> element gives every engine a real value-bearing fill,
 * without relying on typed attr() (unsupported in Safari/Firefox) or inline
 * styles. The transparent range track stays above it and owns all input,
 * focus and accessibility behaviour.
 */
.gtvc__slider-visual {
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  margin: 0;
  overflow: hidden;
  transform: translateY(-50%);
  border: 0;
  border-radius: 99px;
  appearance: none;
  background: rgba(255, 255, 255, 0.12);
  color: var(--gtvc-accent);
  pointer-events: none;

  &::-webkit-progress-bar {
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.12);
  }

  &::-webkit-progress-value {
    border-radius: 99px;
    background: var(--gtvc-accent);
  }

  &::-moz-progress-bar {
    border-radius: 99px;
    background: var(--gtvc-accent);
  }
}

.gtvc__slider {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 30px;
  margin: 0;
  border-radius: var(--gtvc-radius-active);
  outline: 0;
  appearance: none;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;

  &:focus-visible {
    outline: 2px solid var(--gtvc-accent);
    outline-offset: 2px;
  }

  &::-webkit-slider-runnable-track {
    height: 3px;
    border: 0;
    border-radius: 99px;
    appearance: none;
    background: rgba(0, 0, 0, 0);
  }

  &::-webkit-slider-thumb {
    width: 14px;
    height: 14px;
    margin-top: -6px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    appearance: none;
    background: var(--gtvc-accent);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  }

  &::-moz-range-track {
    height: 3px;
    border: 0;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0);
  }

  &::-moz-range-progress {
    height: 3px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0);
  }

  &::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(0, 0, 0, 0.35);
    border-radius: 50%;
    background: var(--gtvc-accent);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
  }
}

.gtvc__slider-scale {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  min-width: 0;
  color: var(--gtvc-faint);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;

}

.gtvc__slider-scale_br {
  margin-top: 8px;
}

.gtvc__results-panel {
  display: grid;
  gap: 16px;
  width: 100%;
  min-width: 0;
  margin-top: 16px;
}

.gtvc__chart-area {
  width: 100%;
  min-width: 0;
  padding: 12px;
  border: 1px solid var(--gtvc-border);
  border-radius: var(--gtvc-radius-panel);
  background: var(--gtvc-surface);

  @media (min-width: 760px) {
    padding: 20px;
  }
}

.gtvc__chart-shell {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 360px;
  max-height: 540px;
  overflow: visible;
  aspect-ratio: 16 / 9;
}

.gtvc__chart {
  display: block;
  width: 100%;
  height: 100%;
  min-width: 0;
  overflow: visible;
}

.gtvc__chart-tooltip {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  min-width: 112px;
  max-width: calc(100% - 24px);
  padding: 8px 10px;
  border: 1px solid var(--gtvc-border-strong);
  border-radius: var(--gtvc-radius-control);
  background: rgba(25, 28, 32, 0.97);
  color: var(--gtvc-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  line-height: 1.25;
  pointer-events: none;
  opacity: 0;

  &[data-visible="true"] {
    opacity: 1;
  }
}

.gtvc__tooltip-line {
  margin: 0;
  color: var(--gtvc-muted);
  font-size: 13px;
  font-weight: 500;

}

.gtvc__tooltip-line_strong {
  color: var(--gtvc-text);
  font-size: 15px;
  font-weight: 700;
}

.gtvc__bottom-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  min-width: 0;
}

@container calculator (min-width: 650px) {
  .gtvc__bottom-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gtvc__bottom-card_br {
    grid-column: 1 / -1;
  }
}

@container calculator (min-width: 950px) {
  .gtvc__bottom-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gtvc__bottom-card_br {
    grid-column: auto;
  }
}

.gtvc__bottom-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 160px;
  padding: 16px;
  border: 1px solid var(--gtvc-border);
  border-radius: var(--gtvc-radius-panel);
  background: var(--gtvc-surface);

  @media (min-width: 760px) {
    padding: 20px;
  }
}

.gtvc__metric-label {
  color: var(--gtvc-muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0;
  text-transform: none;

}

.gtvc__metric-label_risk {
  justify-self: end;
  white-space: nowrap;
}

.gtvc__ev-hero {
  margin-top: 12px;
  color: var(--gtvc-green);
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.5px;
  white-space: nowrap;
}

.gtvc__metric-secondary {
  margin: 8px 0 0;
  color: var(--gtvc-text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.gtvc__range-list {
  display: grid;
  gap: 11px;
  margin-top: 14px;
}

.gtvc__range-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.gtvc__range-label {
  position: relative;
  min-width: 0;
  padding-left: 14px;
  color: var(--gtvc-muted);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 2px;
    background: var(--gtvc-green);
    transform: translateY(-50%);
  }

}

.gtvc__range-label_middle::before {
  background: var(--gtvc-yellow);
}

.gtvc__range-label_worst::before {
  background: var(--gtvc-red);
}

.gtvc__range-value {
  justify-self: end;
  color: var(--gtvc-green);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

}

.gtvc__range-value_corridor {
  color: var(--gtvc-text);
  font-size: 18px;
}

.gtvc__range-value_positive {
  color: var(--gtvc-green);
}

.gtvc__range-value_negative {
  color: var(--gtvc-red);
}

.gtvc__range-value_neutral {
  color: var(--gtvc-text);
}

.gtvc__br-labels {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: baseline;
  min-width: 0;
}

.gtvc__br-values {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 12px;
  align-items: baseline;
  min-width: 0;
  margin-top: 12px;
}

.gtvc__br-value {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  color: var(--gtvc-text);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;

  &:last-child {
    justify-self: end;
  }
}

.gtvc__br-value-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.gtvc__br-value-unit {
  color: var(--gtvc-muted);
  font-size: 13px;
  font-weight: 500;
}

.gtvc__br-middle {
  min-width: 0;
  margin-top: 14px;
}

.gtvc__risk-meter {
  display: none;
}

.gtvc__risk-meter-fill {
  display: block;
}

.gtvc__metric-value_positive {
  color: var(--gtvc-green);
}

.gtvc__metric-value_negative {
  color: var(--gtvc-red);
}

.gtvc__metric-value_warning {
  color: var(--gtvc-yellow);
}

.gtvc__metric-value_neutral {
  color: var(--gtvc-yellow);
}

.gtvc__grid-line {
  stroke: rgba(255, 255, 255, 0.055);
  stroke-width: 1;
}

.gtvc__axis-line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
}

.gtvc__baseline {
  stroke: rgba(255, 255, 255, 0.26);
  stroke-width: 1;
}

.gtvc__tick-label {
  fill: var(--gtvc-muted);
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
}

.gtvc__axis-label {
  fill: var(--gtvc-text);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.gtvc__ci-band-95 {
  fill: rgba(201, 154, 82, 0.035);
  stroke: none;
}

.gtvc__ci95-line {
  fill: none;
  stroke: rgba(201, 154, 82, 0.18);
  stroke-width: 1;
  stroke-dasharray: 4 5;
}

.gtvc__ev-line {
  fill: none;
  stroke: rgba(201, 154, 82, 0.82);
  stroke-width: 2.2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gtvc__sample-line {
  fill: none;
  stroke-width: 1.6px;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.82;
  pointer-events: none;

}

.gtvc__sample-line_best {
  stroke: #59b980;
}

.gtvc__sample-line_good {
  stroke: #88c995;
}

.gtvc__sample-line_middle {
  stroke: #d2b45e;
}

.gtvc__sample-line_weak {
  stroke: #d58f55;
}

.gtvc__sample-line_worst {
  stroke: #d96d63;
}

.gtvc__sample-line_hovered {
  stroke-width: 2.4px;
  opacity: 1;
}

.gtvc__sample-hit {
  fill: none;
  stroke: rgba(0, 0, 0, 0);
  stroke-width: 18;
  pointer-events: stroke;
}

.gtvc__hover-point {
  opacity: 0;
  stroke: #ffffff;
  stroke-width: 1.5px;
  pointer-events: none;

  &[data-visible="true"] {
    opacity: 1;
  }

}

.gtvc__hover-point_best {
  fill: #59b980;
}

.gtvc__hover-point_good {
  fill: #88c995;
}

.gtvc__hover-point_middle {
  fill: #d2b45e;
}

.gtvc__hover-point_weak {
  fill: #d58f55;
}

.gtvc__hover-point_worst {
  fill: #d96d63;
}

.gtvc__chart-legend-svg {
  pointer-events: none;
}

.gtvc__legend-line {
  stroke-width: 2;

}

.gtvc__legend-line_ev {
  stroke: rgba(201, 154, 82, 0.82);
}

.gtvc__legend-line_ci {
  stroke: rgba(201, 154, 82, 0.38);
  stroke-dasharray: 4 4;
}

.gtvc__legend-text {
  fill: var(--gtvc-muted);
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
}

.gtvc__mobile-debug {
  position: fixed;
  right: 8px;
  bottom: 8px;
  z-index: 2147483000;
  display: grid;
  gap: 6px;
  width: 360px;
  max-width: calc(100% - 16px);
  max-height: 360px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
  background: rgba(12, 13, 16, 0.96);
  color: var(--gtvc-text);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
}

.gtvc__mobile-debug-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 6px;
  align-items: center;
  min-width: 0;
}

.gtvc__mobile-debug-title {
  min-width: 0;
  overflow: hidden;
  color: var(--gtvc-muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.gtvc__mobile-debug-btn {
  height: 28px;
  padding: 0 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gtvc-text);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;

  &:focus-visible {
    outline: 2px solid var(--gtvc-accent);
    outline-offset: 2px;
  }
}

.gtvc__mobile-debug-status {
  min-width: 0;
  padding: 5px 7px;
  overflow: hidden;
  border-radius: 6px;
  background: rgba(89, 189, 132, 0.12);
  color: var(--gtvc-green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;

}

.gtvc__mobile-debug-status_fail {
  background: rgba(220, 108, 97, 0.16);
  color: var(--gtvc-red);
}

.gtvc__mobile-debug-log {
  min-width: 0;
  max-height: 260px;
  margin: 0;
  overflow: auto;
  color: var(--gtvc-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  line-height: 1.45;
  white-space: pre-wrap;
}

.gtvc__debug-copy-buffer {
  position: fixed;
  top: 0;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
