/* Pension Drawdown calculator, per-slug stylesheet.
   The base line-chart classes (calc-chart-bg / -line / -gridlines / -legend) and the shared .calc-sr-only
   hiding rule come from calculator.css + mortgage-overpayment.css, which the page also links. This sheet
   adds the drawdown-specific chart styling: a SOLID neutral balance line (the pot over retirement is just a
   value over time, not a "winner"/"loser" comparison, so it uses the same neutral solid line as Compound
   Interest, not the dashed loser line), its legend swatch, and the depletion marker (a dashed money-out rule
   at the year the pot runs out, plus its "Runs out at NN" label). */

.calc-page[data-calc-slug="pension-drawdown"] .calc-chart-line {
    stroke: var(--chart-neutral-line);
}

.calc-page[data-calc-slug="pension-drawdown"] .calc-chart-swatch-drawdown {
    background: var(--chart-neutral-line);
}

.calc-page[data-calc-slug="pension-drawdown"] .calc-chart-marker-line {
    stroke: var(--chart-money-out);
    stroke-width: 1.5;
    stroke-dasharray: 5 4;
}

.calc-page[data-calc-slug="pension-drawdown"] .calc-chart-marker-label {
    fill: var(--chart-money-out);
    font-size: 10px;
    font-weight: 600;
}
