/**
 * Backtest results report — matches backtest-page / screener aesthetic.
 */

.report {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-family: "Inter", system-ui, sans-serif;
}

/* —— Hero —— */
.report__hero {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible;
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.report__hero-bar {
  display: flex;
  justify-content: flex-end;
  margin: -0.25rem 0 0.35rem;
}

.report__hero-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 15, 15, 0.75);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 0.95rem;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease,
    transform 0.12s ease;
}

.report__hero-download:hover:not(:disabled) {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.report__hero-download:focus-visible {
  outline: 2px solid rgba(50, 205, 50, 0.65);
  outline-offset: 2px;
}

.report__hero-download:active:not(:disabled) {
  transform: scale(0.96);
}

.report__hero-download:disabled {
  opacity: 0.55;
  cursor: wait;
}

/* Off-screen branded card — source for PNG download (matches share template) */
.report__png-export {
  position: fixed;
  left: -12000px;
  top: 0;
  width: 680px;
  box-sizing: border-box;
  pointer-events: none;
  z-index: -1;
}

.report__png-export-inner {
  box-sizing: border-box;
  width: 100%;
  background: #0d0d0d;
  border: 1px solid #4ade80;
  border-radius: 2px;
  padding: 1.65rem 1.85rem 1.35rem;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.report__png-brand {
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.report__png-tagline {
  margin-top: 0.2rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #888888;
  line-height: 1.3;
}

.report__png-body {
  margin-top: 1.65rem;
  margin-bottom: 1.85rem;
}

.report__png-ticker {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.report__png-return {
  margin-top: 0.35rem;
  font-size: 3.2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.report__png-return--pos {
  color: #4ade80;
}

.report__png-return--neg {
  color: #f87171;
}

.report__png-return-label {
  margin-top: 0.45rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888888;
}

.report__png-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem 0.85rem;
  padding-top: 1.15rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.report__png-metric-label {
  display: block;
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 0.35rem;
}

.report__png-metric-value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.report__png-footer {
  margin-top: 1.15rem;
  font-size: 0.65rem;
  font-weight: 500;
  color: #666666;
  line-height: 1.4;
}

/* —— Hero bento (asymmetric layout, meters, SVG icons) —— */
.report__hero--bento {
  padding: 1.35rem 1.35rem 1.5rem;
  background:
    radial-gradient(120% 80% at 12% 0%, rgba(50, 205, 50, 0.06), transparent 45%),
    radial-gradient(90% 60% at 100% 100%, rgba(255, 255, 255, 0.03), transparent 40%),
    rgba(26, 26, 26, 0.88);
}

.report__hero-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
  margin-top: 0.15rem;
}

.report__hero-tile {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0.95rem 1rem 0.8rem;
  background: rgba(10, 10, 10, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.065);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.report__hero-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  opacity: 0;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--hero-accent, #32cd32) 35%, transparent);
  transition: opacity 0.18s ease;
}

.report__hero-tile:hover {
  border-color: rgba(255, 255, 255, 0.11);
}

.report__hero-tile:hover::after {
  opacity: 0.35;
}

.report__hero-tile--return {
  grid-column: 1 / span 7;
  grid-row: span 2;
  padding: 1.1rem 1.15rem 1rem;
  min-height: 11.5rem;
}

.report__hero-tile--win {
  grid-column: 8 / span 5;
}

.report__hero-tile--risk {
  grid-column: 8 / span 5;
}

.report__hero-tile--pf {
  grid-column: 1 / span 4;
}

.report__hero-tile--trades {
  grid-column: 5 / span 2;
}

.report__hero-tile--exp {
  grid-column: 7 / span 2;
}

.report__hero-tile--best {
  grid-column: 9 / span 2;
}

.report__hero-tile--worst {
  grid-column: 11 / span 2;
}

@media (max-width: 960px) {
  .report__hero-tile--return {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 0;
  }

  .report__hero-tile--win {
    grid-column: 1 / span 6;
  }

  .report__hero-tile--risk {
    grid-column: 7 / span 6;
  }

  .report__hero-tile--pf {
    grid-column: 1 / span 6;
  }

  .report__hero-tile--trades {
    grid-column: 7 / span 3;
  }

  .report__hero-tile--exp {
    grid-column: 10 / span 3;
  }

  .report__hero-tile--best {
    grid-column: 1 / span 6;
  }

  .report__hero-tile--worst {
    grid-column: 7 / span 6;
  }
}

@media (max-width: 560px) {
  .report__hero-bento {
    grid-template-columns: 1fr 1fr;
  }

  .report__hero-tile--return {
    grid-column: 1 / -1;
  }

  .report__hero-tile--win,
  .report__hero-tile--risk,
  .report__hero-tile--pf {
    grid-column: 1 / -1;
  }

  .report__hero-tile--trades,
  .report__hero-tile--exp,
  .report__hero-tile--best,
  .report__hero-tile--worst {
    grid-column: span 1;
  }
}

.report__hero-tile-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.report__hero-ticker {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  text-transform: uppercase;
}

.report__hero-pill {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  padding: 0.28rem 0.55rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.report__hero-return-visual {
  width: 100%;
  height: 3rem;
  margin: 0.15rem 0 0.5rem;
}

.report__hero-curve {
  display: block;
  width: 100%;
  height: 100%;
}

.report__hero-return-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.report__hero-trend-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: color-mix(in srgb, var(--hero-accent, #4ade80) 75%, rgba(255, 255, 255, 0.5));
  flex-shrink: 0;
}

.report__hero-trend-ico svg {
  width: 1.5rem;
  height: 1.5rem;
}

.report__hero-return {
  font-size: clamp(2.1rem, 6vw, 2.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-variant-numeric: tabular-nums;
}

.report__hero-label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
  margin-top: 0.35rem;
}

.report__hero-tile-head {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.45rem;
}

.report__hero-tile-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.38);
  flex-shrink: 0;
}

.report__hero-tile-ico svg,
.report__hero-tile-ico .report__hero-ico {
  width: 1.05rem;
  height: 1.05rem;
}

.report__hero-tile-ico svg {
  stroke: currentColor;
}

.report__hero-tile-title {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
}

.report__hero-tile-value {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  margin-bottom: 0.35rem;
}

.report__hero-tile-value--sm {
  font-size: 1.12rem;
  font-weight: 700;
}

.report__hero-caption {
  margin: 0.55rem 0 0;
  font-size: 0.65rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.38);
  font-weight: 500;
}

.report__hero-track {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.report__hero-track--thin {
  height: 4px;
}

.report__hero-fill {
  height: 100%;
  border-radius: inherit;
  min-width: 0;
  transition: width 0.35s ease;
}

.report__hero-fill--accent {
  background: linear-gradient(
    90deg,
    color-mix(in srgb, var(--hero-accent, #32cd32) 55%, transparent),
    color-mix(in srgb, var(--hero-accent, #32cd32) 95%, #fff)
  );
  box-shadow: 0 0 12px color-mix(in srgb, var(--hero-accent, #32cd32) 40%, transparent);
}

.report__hero-fill--muted {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.42));
}

.report__hero-fill--warn {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.35), rgba(251, 191, 36, 0.85));
}

.report__hero-fill--stress {
  background: linear-gradient(
    90deg,
    rgba(251, 113, 133, 0.35),
    rgba(248, 113, 113, 0.92)
  );
}

.report__hero-mono {
  font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
  letter-spacing: 0.05em;
}

.report__hero-tile-top--batch {
  align-items: flex-start;
}

.report__hero-batch-brand {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
}

.report__hero-batch-brand > span[aria-hidden="true"] .report__hero-ico {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  opacity: 0.55;
  color: rgba(255, 255, 255, 0.55);
}

.report__hero-ticker--batch {
  letter-spacing: 0.05em;
}

/* Batch multi-symbol: fourth row tiles (R/R, trades, coverage, pilot) */
.report__hero--batch-run .report__hero-tile--batch-rr {
  grid-column: 1 / span 3;
}

.report__hero--batch-run .report__hero-tile--batch-trades {
  grid-column: 4 / span 3;
}

.report__hero--batch-run .report__hero-tile--batch-breadth {
  grid-column: 7 / span 3;
}

.report__hero--batch-run .report__hero-tile--batch-pilot {
  grid-column: 10 / span 3;
}

@media (max-width: 960px) {
  .report__hero--batch-run .report__hero-tile--batch-rr {
    grid-column: 1 / span 6;
  }

  .report__hero--batch-run .report__hero-tile--batch-trades {
    grid-column: 7 / span 6;
  }

  .report__hero--batch-run .report__hero-tile--batch-breadth {
    grid-column: 1 / span 6;
  }

  .report__hero--batch-run .report__hero-tile--batch-pilot {
    grid-column: 7 / span 6;
  }
}

@media (max-width: 560px) {
  .report__hero--batch-run .report__hero-tile--batch-rr,
  .report__hero--batch-run .report__hero-tile--batch-trades,
  .report__hero--batch-run .report__hero-tile--batch-breadth,
  .report__hero--batch-run .report__hero-tile--batch-pilot {
    grid-column: 1 / -1;
  }
}

.report__batch-equity-trend-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
}

.report__batch-equity-trend svg {
  width: 0.95em;
  height: 0.95em;
}

.report__batch-equity-trend--flat {
  font-weight: 800;
  opacity: 0.55;
}

.report--batch .report__batch-ret {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
}

.report--batch .report__batch-ret--pos {
  color: #4ade80;
}

.report--batch .report__batch-ret--neg {
  color: #f87171;
}

.report--batch .report__batch-ret--flat {
  color: rgba(255, 255, 255, 0.55);
}

.report--batch .report__batch-status-cell {
  text-align: center;
  width: 4.5rem;
}

.report--batch .report__batch-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5625rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.45rem;
  border-radius: 6px;
  border: 1px solid transparent;
}

.report--batch .report__batch-status--ok {
  color: #86efac;
  border-color: rgba(74, 222, 128, 0.35);
  background: rgba(74, 222, 128, 0.08);
}

.report--batch .report__batch-status--fail {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(248, 113, 113, 0.1);
  cursor: help;
}

.report__hero-dual {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.report__hero-dual .report__hero-caption {
  margin-top: auto;
  padding-top: 0.45rem;
}

.report__hero-dual-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}

.report__hero-dual-row--spaced {
  margin-top: 0.65rem;
}

.report__hero-dual-label {
  font-size: 0.5625rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
}

.report__hero-dual-val {
  font-size: 0.95rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.92);
}

/* —— Cards (charts, summary, KPI) —— */
.report__card {
  background: rgba(26, 26, 26, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 1.35rem 1.5rem 1.5rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
}

.report__card + .report__card {
  margin-top: 0;
}

.report__card-head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  flex-wrap: wrap;
}

.report__compare-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
}

.report__compare-row .report__compare {
  flex: 1 1 140px;
  min-width: min(100%, 140px);
}

@media (max-width: 520px) {
  .report__compare-row .report__compare {
    flex: 1 1 100%;
  }
}

.report__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid rgba(50, 205, 50, 0.45);
  background: var(--bg-tertiary, #252525);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color, #32cd32);
  flex-shrink: 0;
}

.report__card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
}

.report__card-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.report__card-head--batch-equity {
  align-items: center;
  gap: 0.65rem;
}

.report__card-title--batch-equity {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 0.75rem;
  flex: 1;
  min-width: 0;
}

.report__batch-equity-label {
  letter-spacing: -0.02em;
}

.report__batch-equity-group {
  margin-left: 0.2em;
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
  font-variant-numeric: tabular-nums;
}

.report__batch-equity-ico {
  font-size: 0.92em;
  margin-right: 0.02em;
  opacity: 0.95;
}

.report__batch-equity-group--pos {
  color: #22c55e;
}

.report__batch-equity-group--pos .report__batch-equity-ico {
  color: #4ade80;
}

.report__batch-equity-group--neg {
  color: #f87171;
}

.report__batch-equity-group--neg .report__batch-equity-ico {
  color: #fb7185;
}

.report__batch-equity-group--flat {
  color: rgba(255, 255, 255, 0.5);
}

.report__prose {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  line-height: 1.65;
  background: rgba(15, 15, 15, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  border-left: 3px solid rgba(50, 205, 50, 0.45);
}

.report__prose p {
  margin: 0 0 0.75rem 0;
}

.report__prose p:last-child {
  margin-bottom: 0;
}

.report__chart-panel {
  background: rgba(15, 15, 15, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  min-height: 380px;
  padding: 0.75rem;
}

/* —— Comparison badges —— */
/* Comparison strip — tinted cards (strategy / buy & hold / S&P 500) */
.report__compare {
  flex: 1;
  min-width: 6.5rem;
  padding: 0.85rem 0.75rem 1rem;
  border-radius: 14px;
  border: 1px solid;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.report__compare-label {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.45rem;
  line-height: 1.2;
}

.report__compare-value {
  font-size: clamp(1rem, 3.5vw, 1.45rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  word-break: break-word;
}

.report__compare--strategy {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.45);
}

.report__compare--strategy .report__compare-value {
  color: #4ade80;
}

.report__compare--buyhold {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.45);
}

.report__compare--buyhold .report__compare-value {
  color: #60a5fa;
}

.report__compare--spy {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.45);
}

.report__compare--spy .report__compare-value {
  color: #a78bfa;
}

/* —— KPI tiles (batch summary reuses .report__kpi) —— */
.report__kpi {
  background: rgba(15, 15, 15, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.1rem 1.15rem;
  transition: border-color 0.15s ease;
}

.report__kpi:hover {
  border-color: rgba(255, 255, 255, 0.1);
}

.report__kpi-label {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
}

.report__kpi-value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--kpi-accent, #fff);
}

/* —— Warning —— */
.report__warn {
  margin-top: 1rem;
  padding: 1.1rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(245, 158, 11, 0.35);
  background: rgba(245, 158, 11, 0.08);
}

.report__warn-title {
  margin: 0 0 0.4rem 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fbbf24;
}

.report__warn p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.65);
}

/* —— Code (admin) —— */
.report__pre-wrap {
  background: rgba(10, 10, 10, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 1.15rem;
  overflow-x: auto;
}

.report__pre-wrap pre {
  margin: 0;
  color: #d4d4d4;
  font-family: ui-monospace, monospace;
  font-size: 0.8125rem;
  line-height: 1.55;
  white-space: pre-wrap;
  word-break: break-word;
}

/* —— Loading —— */
.report__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1.5rem;
  min-height: 280px;
}

.report__spinner {
  width: 44px;
  height: 44px;
  border: 3px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--primary-color, #32cd32);
  border-radius: 50%;
  animation: report-spin 0.85s linear infinite;
}

.report__loading-text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
}

@keyframes report-spin {
  to {
    transform: rotate(360deg);
  }
}

/* —— Error —— */
.report__error {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: 14px;
  border: 1px solid rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.06);
}

.report__error-title {
  margin: 0 0 0.65rem 0;
  font-size: 1rem;
  font-weight: 700;
  color: #f87171;
}

.report__error-msg {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
}

/* —— Results shell (header strip) —— */
.results-container--report .results-header {
  background: rgba(26, 26, 26, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 1.5rem;
}

.results-container--report .results-title {
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  gap: 0.65rem;
}

.results-container--report .results-title__label {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.results-container--report .results-title i {
  width: 36px;
  height: 36px;
  font-size: 0.9rem;
  border-radius: 8px;
  border: 1px solid rgba(50, 205, 50, 0.45);
  background: var(--bg-tertiary, #252525);
  color: var(--primary-color, #32cd32);
}

.results-container--report .results-content {
  padding: 1.5rem;
  background: rgba(15, 15, 15, 0.4);
}

@media (max-width: 640px) {
  .report__chart-panel {
    min-height: 300px;
    padding: 0.5rem;
  }

  .results-container--report .results-content {
    padding: 1rem;
  }
}
