/* ======================================================================
   R93 — chart legend, withheld notice, entity list.
   NIGHT_90's contract keeps `filing-chart.css` BYTE-IDENTICAL to main so
   the dark default stays byte-preserved and light is added through the
   supplement file. These rules are new surface rather than edits to that
   file, so they live here instead of breaking a guard that exists to stop
   exactly this kind of drive-by append.
   ====================================================================== */

/* R93a — the legend was a run-on: three items with no spacing between a
   swatch and the neighbouring text, so "PERM filingsLCA filings" read as
   one label. Flex with an explicit gap, and the swatch sized as a swatch. */
.chart-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.1rem;
  margin-top: 0.5rem;
  font-size: var(--font-size-xs);
  color: var(--color-text-tertiary);
}

.chart-legend__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  white-space: nowrap;
}

.chart-legend__swatch {
  width: 0.7em;
  height: 0.7em;
  border-radius: 2px;
  flex: 0 0 auto;
}

/* R93c — the withheld notice. Quiet, but present: a series that vanishes
   without saying so is indistinguishable from an employer with no layoffs,
   which is the exact confusion the coverage doctrine exists to prevent. */
.chart-withheld {
  margin: 0.5rem 0 0;
  font-size: var(--font-size-xs);
  line-height: 1.5;
  color: var(--color-text-tertiary);
  max-width: 70ch;
}
