/*
 * tax-deduction-planner.css — per-tool styles.
 * Tokens only; no inline styles (CSP: style-src 'self').
 * Section headings that group the deduction fields, plus the period radio toggle.
 */

.tdp-fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 var(--space-4);
}

/* Period toggle radios */
.tdp-radio-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-2);
}
.tdp-radio {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font: 500 14px/1.4 var(--font-sans);
  color: var(--text-primary);
}
.tdp-radio input {
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--blue-600);
  cursor: pointer;
}

/* Grouping headings inside the input column */
.tdp-section {
  margin: var(--space-6) 0 var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 1px solid var(--border);
  font: 600 13px/1.3 var(--font-sans);
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

.tdp-disclaimer {
  margin-top: var(--space-4);
  font-style: italic;
}
