/* The picker (js/tasks/secim.js): toggle chips and one answer pill whose
   label follows the count. Shared classes (.pill) stay in base.css. A held
   chip fills softly and grows a check; the border never goes gold, because
   a gold edge means work still waiting and a chip is just a chip. */

.sc-rack {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6em;
  max-width: 34em;
  margin: 1.4em auto 1.1em;
}
.sc-chip {
  font-family: var(--sans);
  font-size: 0.92rem;
  color: var(--cream);
  background: none;
  border: 1px solid rgba(243, 234, 216, 0.28);
  border-radius: 999px;
  padding: 0.5em 1.1em;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.12s ease;
}
.sc-chip:hover, .sc-chip:focus-visible {
  border-color: rgba(243, 234, 216, 0.55);
  outline: none;
}
.sc-chip:active { transform: scale(0.95); }
.sc-chip.on {
  background: rgba(243, 234, 216, 0.12);
  border-color: rgba(243, 234, 216, 0.75);
}
.sc-chip.on::before {
  content: '✓ ';
  opacity: 0.8;
}

.sc-answer { display: block; margin: 0 auto; }
