/*
 * compound-interest-calculator.css — per-tool styles for the contribution-
 * timing radio group. Tokens only; no inline styles (CSP: style-src 'self').
 */

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

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