/* Highlight in-scope rows in objective_rankings tables.
   The JS in tablesort.js adds .in-scope class to any row whose last cell
   begins with the 🟦 marker. Edit that marker in the markdown to toggle. */
table tr.in-scope > td {
  background-color: #e3f2fd;
}

/* Slight de-emphasis for explicitly out-of-scope rows.
   Triggered by the ⬜ marker. */
table tr.out-of-scope > td {
  color: #888;
  font-style: italic;
}

/* Dark-mode equivalents */
[data-md-color-scheme="slate"] table tr.in-scope > td {
  background-color: #1e3a5f;
}
[data-md-color-scheme="slate"] table tr.out-of-scope > td {
  color: #999;
}
