/*
 * Local bootstrap-icons compatibility layer (no external CDN).
 * This project previously loaded `bootstrap-icons@1.3.0` from jsDelivr.
 * To reduce supply-chain risk and remove external links, we provide minimal
 * glyph fallbacks using Unicode symbols (not the official icon set).
 *
 * If you need pixel-perfect Bootstrap Icons, replace this file with the official
 * bootstrap-icons CSS + font assets and keep them under `Public/Static/`.
 */

.bi {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  vertical-align: -0.125em;
}

.bi::before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Direction / navigation */
.bi-arrow-left::before,
.bi-back::before { content: "←"; }
.bi-arrow-right::before { content: "→"; }
.bi-chevron-right::before { content: "›"; }
.bi-caret-down-fill::before { content: "▾"; }
.bi-box-arrow-right::before { content: "⇥"; }

/* Actions */
.bi-plus::before,
.bi-person-plus::before,
.bi-person-plus-fill::before { content: "+"; }
.bi-dash::before { content: "−"; }
.bi-x::before { content: "×"; }
.bi-check2::before,
.bi-ui-checks::before { content: "✓"; }
.bi-ui-radios::before { content: "◉"; }
.bi-text-indent-left::before { content: "⇤"; }

/* Status */
.bi-exclamation-circle::before,
.bi-exclamation-circle-fill::before { content: "!"; }
.bi-x-circle::before { content: "⊗"; }

/* Common UI metaphors */
.bi-search::before { content: "⌕"; }
.bi-gear::before,
.bi-sliders::before { content: "⚙"; }
.bi-funnel::before { content: "⎇"; }
.bi-globe::before { content: "◎"; }
.bi-link-45deg::before { content: "⛓"; }
.bi-envelope::before { content: "✉"; }
.bi-bell::before { content: "⚑"; }
.bi-headset::before { content: "☎"; }
.bi-wallet2::before { content: "$"; }
.bi-hammer::before { content: "⚒"; }

/* Lists / documents */
.bi-card-list::before { content: "≡"; }
.bi-file-richtext::before,
.bi-journal-text::before { content: "≣"; }

/* Identity */
.bi-person-circle::before,
.bi-person-fill::before { content: "U"; }

/* Visibility */
.bi-eye::before { content: "◉"; }
.bi-eye-slash::before { content: "⊘"; }

/* Security */
.bi-shield-check::before,
.bi-shield-fill::before { content: "⛨"; }

