/* Gray out the label text for the disabled radio option */
.webform-submission-form input[disabled] + label,
.webform-submission-form input[disabled] ~ span {
  color: #a0a0a0; /* A standard gray color */
  cursor: not-allowed;
  opacity: 0.6;
}

/* Optional: Make the radio circle wrapper look unclickable too */
.webform-submission-form .form-item.form-type-radio:has(input[disabled]) {
  cursor: not-allowed;
}