/* ----------------------------------------------------
   Multiple CI Plot — SVG Stroke Styles
---------------------------------------------------- */

/* Strong hit CI (top CI) */
.mci-ci-hit-strong  {
  stroke: #2563EB;             /* brand blue */
  stroke-width: 3;
}

/* Faded hit CI (all other hit rows) */
.mci-ci-hit-faded   {
  stroke: rgba(37, 99, 235, 0.35);
  stroke-width: 2;
}

/* Strong miss CI (top CI when it misses μ) */
.mci-ci-miss-strong {
  stroke: #DC2626;             /* strong red */
  stroke-width: 3;
}

/* Faded miss CI (all other misses) */
.mci-ci-miss-faded  {
  stroke: rgba(220, 38, 38, 0.35);
  stroke-width: 2;
}

/* Mean marker (tick) for the highlighted top CI only */
.mci-mean-marker {
  stroke: #2563EB;             /* strong brand blue */
  stroke-width: 3;
}

/* Vertical μ reference line in the stack */
.mci-mu {
  stroke: #2563EB;             /* brand blue */
  stroke-width: 2;
  stroke-dasharray: 4 4;       /* matches top-panel μ */
}
