/* WTWR_STRATEGY_HORSE_EMPHASIS_V1
   The strategy-selected horse remains exactly as the site already renders it.
   Only the non-qualifying P1/P2 side is visually subdued.
*/

/* TODAY'S RACING — dim the entire non-qualifying horse cell, including
   horse name, AI chips, history, BACK/LAY boxes and movement label. */
#today td.wtwr-strategy-side-muted{
  opacity:.38!important;
  filter:saturate(.22) brightness(.72)!important;
  background:rgba(2,7,13,.72)!important;
  box-shadow:inset 0 0 0 9999px rgba(2,7,13,.14)!important;
  transition:opacity .16s ease, filter .16s ease!important;
}

/* Do not brighten/change the actual qualifier — Power Cut should look
   exactly as it did before this patch. */
#today td.wtwr-strategy-side-qualified{
  opacity:1!important;
  filter:none!important;
}

/* MY DEMO — the existing audited horse-side controller already identifies
   the excluded td. Make the WHOLE side dull rather than only the inner label. */
#demoSelections td.wtwr-demo-side-excluded{
  opacity:.38!important;
  filter:saturate(.22) brightness(.72)!important;
  background:rgba(2,7,13,.72)!important;
  box-shadow:inset 0 0 0 9999px rgba(2,7,13,.14)!important;
  text-align:left!important;
  cursor:not-allowed!important;
}

/* The cell now owns the dimming, so avoid multiplying opacity from the
   earlier label-level visual patch. */
#demoSelections td.wtwr-demo-side-excluded .demo-pick-option.wtwr-demo-nonqualifier{
  display:flex!important;
  opacity:1!important;
  filter:none!important;
  pointer-events:none!important;
}

#demoSelections td.wtwr-demo-side-excluded::after{
  content:none!important;
  display:none!important;
}
