tb-choice {
  display: block;
  margin: 1rem 0;
}

.tb-choice__prompt {
  margin-bottom: 1rem;
}

.tb-choice__options {
  display: grid;
  gap: 0.75rem;
}

.tb-choice__option {
  border: 1px solid var(--color-background-border, #999);
  box-sizing: border-box;
  padding: 0.75rem;
}

.tb-choice__label {
  align-items: flex-start;
  cursor: pointer;
  display: flex;
  gap: 0.5rem;
}

.tb-choice__input {
  flex: 0 0 auto;
  margin-top: 0.3rem;
}

.tb-choice__answer > :first-child,
.tb-choice__feedback > :first-child {
  margin-top: 0;
}

.tb-choice__answer > :last-child,
.tb-choice__feedback > :last-child {
  margin-bottom: 0;
}

.tb-choice__feedback {
  border-left: 0.25rem solid var(--color-background-border, #999);
  margin: 0.75rem 0 0 1.5rem;
  padding: 0.25rem 0 0.25rem 0.75rem;
}

.tb-choice__option--correct {
  border-color: #2e7d32;
}

.tb-choice__option--incorrect {
  border-color: #b00020;
}

.tb-choice__option--correct .tb-choice__feedback {
  border-left-color: #2e7d32;
}

.tb-choice__option--incorrect .tb-choice__feedback {
  border-left-color: #b00020;
}

.tb-choice__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.75rem;
}

.tb-choice__check {
  cursor: pointer;
  min-height: 2.25rem;
  padding: 0.35rem 0.75rem;
}

.tb-choice__status {
  font-weight: 700;
  margin: 0;
}
