/* =====================================================
   RELIE — MODE RAYON (drag + preview)
===================================================== */

.relie-rayon-stage {
  touch-action: none;
}

.relie-rayon-stage .relie-line {
  stroke: #ffd84d;  /* jaune lumineux */
  stroke-width: 4;
  stroke-linecap: round;
}

.relie-rayon-stage .relie-line.is-preview {
  stroke: #f5c542;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: none; /* trait plein */
  opacity: 0.75;
  pointer-events: none;
}

.relie-rayon-stage .relie-line.is-ok {
  stroke: #1f9d55;
}

.relie-rayon-stage .relie-line.is-ko {
  stroke: #d64545;
}

.relie-rayon-stage .relie-line.is-solution {
  stroke: #ffb913;
  stroke-width: 4;
  stroke-dasharray: 8 5;
}