/* ===========================================================================
   Indicateur de scroll (UX Checklist Seller Office, Req 1.2)
   Repère de position discret superposé au bord droit des listes scrollables.
   Piloté par js/ui/scrollcue.js. Caché par défaut ; visible pendant le défilement.
   =========================================================================== */
.scrollcue {
  position: fixed;
  width: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, .12);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .2s ease;
  transition: opacity .2s ease;
}
.scrollcue.on { opacity: 1; }
.scrollcue > i {
  display: block;
  width: 100%;
  border-radius: 3px;
  background: var(--rsk-accent, #E50914);
}
