
/* Quick capture: blush fill with navy text, matching the new banner's icon circles
   (#FCEAEA, sampled from the artwork; navy on it measures 10.92:1).
   TARGETED BY TAG, not by class. Two earlier selectors were both too broad:
   `[class*="rounded-full"]` repainted several hundred buttons across every tab, and
   the button's own `bg-[#ee725f]` class is SHARED with other coral primaries
   (Open medication routine, Create Wellness Snapshot, Add Resource, the Wellness
   "Open" buttons). Only this one button should change, so it is tagged in JS. */
#huRhythmRoot button[data-qcx]{
  background-color:#FCEAEA !important;
  background-image:none !important;
  border:1px solid #F3D9D9 !important;
  color:#243447 !important;
  -webkit-text-fill-color:#243447 !important;
  box-shadow:0 4px 14px rgba(36,52,71,.08) !important;
}
#huRhythmRoot button[data-qcx]:hover{ background-color:#F8DFDF !important; }
#huRhythmRoot button[data-qcx] svg{ color:#243447 !important; }
#huRhythmRoot button[data-qcx]:focus-visible{ outline:3px solid #CF9E3F; outline-offset:2px; }
