/* Live TV menu highlight (plugin-only) */
@keyframes fmltPulseDot {
  0%   { transform: scale(.9); opacity: 1; }
  70%  { transform: scale(1.35); opacity: .35; }
  100% { transform: scale(.9); opacity: 1; }
}

/* Menu link */
li.fmlt-live-tv-menu > a{
  color: #facc15 !important;           /* yellow */
  font-weight: 700;
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
}

/* ? Use ::after instead of ::before to avoid theme conflicts */
li.fmlt-live-tv-menu > a::after{
  content: "" !important;
  display: inline-block !important;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ef4444;                 /* red dot (visible) */
  animation: fmltPulseDot 1s infinite;
  order: -1;                            /* put dot before text */
}
