/*
 * selling-price-calculator.css — per-tool styles for the basis radio group.
 * Tokens only; no inline styles (CSP: style-src 'self').
 */

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

/* Basis radios — stacked rows, wrap cleanly on narrow screens. */
.spc-radio-row {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-2);
}
.spc-radio {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  font: 500 14px/1.4 var(--font-sans);
  color: var(--text-primary);
}
.spc-radio input {
  flex: none;
  width: 16px;
  height: 16px;
  accent-color: var(--blue-600);
  cursor: pointer;
}
