/* ============================================================================
   DRIVR — Icon system (inline-SVG runtime)
   Source glyphs are single-path SVGs with fill="currentColor". We inline them
   as real <svg> via assets/icons.js so they recolor with CSS `color` (or --ic)
   and render in every engine. Load icons.js once per page that uses icons.

   Usage:
     <i class="ic ic-search"></i>                    // 16px, inherits color
     <i class="ic ic-warning" style="--ic:var(--bad)"></i>
     <i class="ic ic-check" style="width:20px;height:20px"></i>
   Available: search filter sort chart gantt calendar time history map-pin phone
     mobile envelope check x warning flag help star thumbs-up bell cog premium
     edit trash plus download upload view link lightbulb team home grid logout
     chevron-down chevron-left chevron-right drag
   ============================================================================ */

.ic {
  display: inline-block;
  width: 16px;
  height: 16px;
  flex: none;
  color: var(--ic, currentColor);
  fill: currentColor;
  vertical-align: -0.15em;
}
svg.ic { display: inline-block; }
