/* ==========================================================================
   Tournament Group Scoring page - accent theming.
   Header/nav-bar theming is shared (see tournament-accent.css). There was
   no dedicated stylesheet for this page before - everything came from the
   global bracketAce.css - so this file covers what's unique to this page's
   own markup.

   All of the rules below are specifically the FALLBACK styling that
   applies when a group has no PrimaryColor of its own: groupScoring.php
   already leaves $style/$shadedStyle empty in that case (unlike the
   Entrants/Times pages' old Group.php, which hard-coded a teal fallback
   directly into an inline style), so a plain class-based CSS override
   here is enough - groups WITH their own PrimaryColor are entirely
   untouched, since they're always rendered via inline style="" which
   already takes priority over anything here regardless of !important.
   ========================================================================== */

h2.group-score {
  background-color: var(--tournament-accent, var(--color-bracket-ace-400)) !important;
  color: var(--tournament-accent-text, whitesmoke) !important;
}

div.group-score.cell {
  color: var(--tournament-accent, var(--color-bracket-ace-400));
}

div.group-score.sub-cell {
  color: var(--tournament-accent, var(--color-bracket-ace-400));
}

div.group-score.sub-cell.scorer {
  background-color: var(--tournament-accent, var(--color-bracket-ace-400));
  color: var(--tournament-accent-text, whitesmoke);
}

button.group-score.detail {
  background-color: var(--tournament-accent, var(--color-bracket-ace-400));
  color: var(--tournament-accent-text, whitesmoke);
}
