/* Minimal placeholder for self-hosted Font Awesome. */
/* Update with @font-face pointing to static/fonts/fa/*.woff2 as part of the asset drop. */

/* Use system emoji as fallback so icons are visible even if font subset missing */
.fa, .fas, .far, .fab {
  font-family: 'Font Awesome 6 Free', 'Font Awesome 6 Brands', 'Apple Color Emoji', 'Segoe UI Emoji', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

/* Minimal glyph fallbacks for common icons when FA fonts are not available */
[class*="fa-"]:before { display: inline-block; }
.fa-moon:before { content: "🌙"; }
.fa-sun:before { content: "☀️"; }
.fa-user:before { content: "👤"; }
.fa-sign-in-alt:before { content: "➡️"; }
.fa-sign-out-alt:before { content: "⬅️"; }
.fa-heart:before { content: "❤️"; }
.fa-calendar:before { content: "📅"; }
.fa-images:before { content: "🖼️"; }
.fa-users:before { content: "👥"; }
.fa-search:before { content: "🔍"; }
.fa-check:before { content: "✔️"; }
.fa-times:before { content: "✖️"; }
.fa-trash:before { content: "🗑️"; }
.fa-edit:before { content: "✏️"; }
.fa-eye:before { content: "👁️"; }
.fa-download:before { content: "⬇️"; }
.fa-shield-alt:before { content: "🛡️"; }
.fa-check-circle:before { content: "✅"; }
.fa-exclamation-circle:before { content: "❗"; }
.fa-exclamation-triangle:before { content: "⚠️"; }
.fa-info-circle:before { content: "ℹ️"; }

/* Size utilities */
.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }


