/* Security-testing page charts — shared CSS for trend and histogram */

.testing-chart-wrap {
  position: relative;
  max-width: 960px;
  margin: 1.25rem auto 2rem;
  padding: 1rem;
  background: var(--rollup-bg, #fff);
  border: 1px solid var(--border-subtle, silver);
  border-radius: 8px;
  box-shadow: 0 1px 2px var(--shadow-color, rgba(0, 0, 0, 0.08));
}
.testing-chart-wrap svg { display: block; width: 100%; height: auto; }

.tc-axis-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 11px;
  fill: var(--gallery-stats, #595959);
}
.tc-axis-title {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  font-weight: 600;
  fill: var(--body-text, #333);
}
.tc-bar-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 10px;
  fill: var(--body-text, #333);
}
.tc-legend-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 12px;
  fill: var(--body-text, #333);
  dominant-baseline: middle;
}
