/* Modal surface */
.lead-modal { border: 1px solid rgba(0,0,0,.06); }

/* Radio “pill” styling */
.lead-radio-pill { position: relative; display: inline-flex; align-items: center; }
.lead-radio-pill input[type="radio"]{
  position: absolute; opacity: 0; width: 0; height: 0; /* hide native */
}
.lead-radio-pill .form-check-label{
  padding: .4rem .8rem;
  border: 1px solid var(--bs-border-color);
  border-radius: 999px;
  transition: all .15s ease-in-out;
  cursor: pointer;
  user-select: none;
  line-height: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.lead-radio-pill .form-check-label:hover { background: var(--bs-light); }
.lead-radio-pill input[type="radio"]:checked + .form-check-label{
  border-color: transparent;
  background: #e7f0ff;
  color: #0a58ca;
}
.lead-radio-pill input[type="radio"]:focus + .form-check-label{
  outline: 2px solid rgba(13,110,253,.35);
  outline-offset: 2px;
}

/* Optional: keep older inline radio (if any) looking tidy */
.lead-radio-pill input[type="radio"] + .form-check-label::before{ display:none; }

/* Keep tiny helper rows tidy */
.form-text a { text-decoration: none; }
.form-text a:hover { text-decoration: underline; }