/* ============================================================
   StreamVault IPTV — SVG Icon Styles
   Inline SVG icons controlled via CSS
   ============================================================ */

.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  stroke-width: 1.5;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.icon-filled { fill: currentColor; stroke: none; }
.icon-sm { font-size: 14px; }
.icon-md { font-size: 20px; }
.icon-lg { font-size: 28px; }
.icon-xl { font-size: 40px; }

/* Color variants */
.icon-neon { color: var(--neon); }
.icon-gold { color: var(--gold); }
.icon-muted { color: var(--text-muted); }
