
/* She does not like the orange on Daily Workouts. The coral is not from the Daily
   Workouts layer itself — that is already sage — it comes from the ISLAND's own
   Routines cards (Morning rhythm, Workday reset, Evening wind-down, All habits)
   that render above it, via Tailwind's arbitrary `#ee725f` classes and inherited
   currentColor on their SVG icons.
   Scoped to the Daily Workouts page only, so coral stays as it is elsewhere. */
#page-rv-workouts [class*="text-[#ee725f]"],
#page-rv-workouts [class*="hover:text-[#ee725f]"]:hover{
  color:#5F7350 !important;
  -webkit-text-fill-color:#5F7350 !important;
}
#page-rv-workouts [class*="bg-[#ee725f]"]{
  background-color:#5F7350 !important;
}
#page-rv-workouts [class*="border-[#ee725f]"]{
  border-color:#5F7350 !important;
}
/* the icons take their colour from the parent, so catch anything still inheriting it */
#page-rv-workouts svg{ color:inherit; }
#page-rv-workouts [class*="ee725f"] svg,
#page-rv-workouts [class*="ee725f"] path,
#page-rv-workouts [class*="ee725f"] circle{
  stroke:currentColor; fill:none;
}
