/* Student highlighter — Custom Highlight API (`::highlight()`).
   Served as a static stylesheet (not via PostCSS/Lightning CSS): Turbopack's
   CSS parser does not recognize `::highlight()` yet and aborts the whole
   globals.css transform when these rules live there. */

::highlight(exam-hl-yellow) {
  background-color: #fde68a;
  color: #1a1a1a;
}
::highlight(exam-hl-green) {
  background-color: #bbf7d0;
  color: #1a1a1a;
}
::highlight(exam-hl-pink) {
  background-color: #fbcfe8;
  color: #1a1a1a;
}
::highlight(exam-hl-focus) {
  background-color: #93c5fd;
  color: #0b1220;
}
