/* SMACSS Module: the choice list — a handful of options standing open, the one
   in force filled in. */
.choice-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 3px;
  gap: 2px;
  background: var(--color-control);
}

.choice-list-option {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border: 0;
  background: none;
  color: var(--color-control-text);
  font: inherit;
  font-size: 13px;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

/* Guarded: a tap leaves :hover standing on a touch screen. */
@media (hover: hover) {
  .choice-list-option:hover {
    background: var(--color-control-hover);
  }
}

.choice-list-option.is-current {
  background: var(--color-surface);
  font-weight: 600;
}
