
/* The Continue button was only ever "less faded" once a choice was made
   (`.sb-btn[disabled]{opacity:.45}`), which does not read as becoming active.
   Now it visibly lifts: full colour, a shadow and a slight rise. */
/* "✓ SELECTED" was showing under EVERY choice, not just the chosen one: the base
   rule is `.sb-feat__sel{display:none}` but a later duplicate sets `display:block`
   unconditionally, so it won. Restored to selected-only. */
.sb-feats .sb-feat .sb-feat__sel{ display:none !important; }
.sb-feats .sb-feat.on .sb-feat__sel,
.sb-feats .sb-feat[aria-pressed="true"] .sb-feat__sel{ display:block !important; }

#sbGo[disabled]{ opacity:.4 !important; box-shadow:none !important; transform:none !important; }
#sbGo.is-ready{
  opacity:1 !important;
  background:#5E7E57 !important;
  box-shadow:0 6px 18px rgba(94,126,87,.42) !important;
  transform:translateY(-1px);
  transition:box-shadow .18s, transform .18s, background .18s;
}
#sbGo.is-ready:hover{ background:#4d6a47 !important; box-shadow:0 8px 22px rgba(94,126,87,.5) !important; }
#sbGo:focus-visible{ outline:3px solid #CF9E3F; outline-offset:2px; }
