/* =========================================================
 * live_modus_student_banner.css — Bandeau "Live-modus actief"
 * + toast d'annonce côté élève (PR2.7).
 * Variables : --fr-blue, --fr-red, --fr-white, --line, --text.
 * ========================================================= */

.lm-banner {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: var(--fr-blue);
  color: #fff;
  padding: .55rem 1rem;
  font-size: .9rem;
}

.lm-banner__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #5dcaa5;
  flex-shrink: 0;
  animation: lm-banner-pulse 2s ease-in-out infinite;
}

@keyframes lm-banner-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .55; }
}

/* ─── Toast ─── */

.lm-toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  max-width: 360px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--fr-blue);
  border-radius: 8px;
  padding: .9rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
  z-index: 999;
}
.lm-toast p { margin: 0 0 .5rem; font-size: .9rem; }
.lm-toast p:last-of-type { margin-bottom: .75rem; }

.lm-toast__ack {
  background: var(--fr-blue);
  color: #fff;
  border: 0;
  padding: .4rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}
.lm-toast__ack:hover { background: #003c7a; }
