/* Checklist: mediation — vraag + Ja/Nee op één regel */

.vraag {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  width: 100%;
}

.vraagtekst {
  flex: 1;
  margin-right: 20px;
  white-space: normal;
}

.vraag label:not(.vraagtekst) {
  margin-left: 20px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.checklist-resultaat {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #dee2e6;
}

.checklist-resultaat-box {
  background: #d4edda;
  border-left: 4px solid #ffc107;
  padding: 1rem 1rem 1rem 1rem;
  margin-top: 0.75rem;
}

.checklist-resultaat-box strong {
  display: block;
  margin-bottom: 0.35rem;
}

.checklist-resultaat-box--incomplete {
  background: #d4edda;
  border-left-color: #ffc107;
}

.checklist-resultaat-box--positive {
  background: #d4edda;
  border-left-color: #28a745;
}

.checklist-resultaat-box--muted {
  background: #e9ecef;
  border-left-color: #6c757d;
}

.checklist-resultaat-box a {
  font-weight: 600;
}
