.sentence-text .word.selected.correct {
  background-color: #dcfce7;   /* green */
  border-color: #86efac;
  color: #1e3a8a;              /* blue text */
}

.sentence-text .word.selected.wrong {
  background-color: #fee2e2;   /* red */
  border-color: #fecaca;
  color: #1e3a8a;              /* blue text */
}

/* Ensure the active emphasis (bold/scale) still applies after submit */
.sentence-text .word.selected.correct,
.sentence-text .word.selected.wrong {
  font-weight: bold;
  transform: scale(1.1);
}