/*
 * NK local icon compatibility layer.
 * Icons are rendered as inline SVG by /assetdata/js/bootstrap-icons-fallback.js.
 * This deliberately avoids an external icon font, so icons remain available
 * on localhost and offline installations.
 */
.bi {
  width: 1em;
  height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  vertical-align: -.125em;
  line-height: 1;
}
.bi::before { display: none !important; content: none !important; }
.bi > svg {
  width: 1em;
  height: 1em;
  display: block;
  overflow: visible;
  pointer-events: none;
}
