/* PalPanel event phase progress fix v1.1
   Completed connector sections are green up to the current phase.
   The current phase itself remains purple; future sections remain gray. */

.phase-track::before{
  background:
    linear-gradient(
      90deg,
      #20ef82 0,
      #20ef82 var(--phase-progress, 0%),
      rgba(103,109,132,.42) var(--phase-progress, 0%),
      rgba(103,109,132,.42) 100%
    )!important;
  box-shadow:0 0 16px rgba(32,239,130,.12);
}

.phase.done span{
  background:#20ef82!important;
  border-color:#20ef82!important;
  box-shadow:
    0 0 0 4px rgba(32,239,130,.10),
    0 0 22px rgba(32,239,130,.52)!important;
}

.phase.current span{
  background:#8b32ff!important;
  border-color:#8b32ff!important;
  box-shadow:
    0 0 0 4px rgba(139,50,255,.10),
    0 0 22px rgba(139,50,255,.58)!important;
}
