/* Font Awesome - Minimal Icon Support */

.fa, .fas {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 1em;
  line-height: 1;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
}

.fa::before, .fas::before {
  content: attr(data-icon);
  font-weight: bold;
  display: inline-block;
}

/* Icon definitions using Unicode symbols or custom content */
.fa-home::before { content: "🏠"; }
.fa-user::before { content: "👤"; }
.fa-lock::before { content: "🔒"; }
.fa-check::before { content: "✓"; }
.fa-check-circle::before { content: "✓"; }
.fa-times::before { content: "✕"; }
.fa-plus::before { content: "+"; }
.fa-minus::before { content: "−"; }
.fa-search::before { content: "🔍"; }
.fa-heart::before { content: "♥"; }
.fa-star::before { content: "★"; }
.fa-shopping-cart::before { content: "🛒"; }
.fa-trash::before { content: "🗑"; }
.fa-edit::before { content: "✎"; }
.fa-download::before { content: "⬇"; }
.fa-upload::before { content: "⬆"; }
.fa-bell::before { content: "🔔"; }
.fa-envelope::before { content: "✉"; }
.fa-phone::before { content: "☎"; }
.fa-calendar::before { content: "📅"; }
.fa-clock::before { content: "🕐"; }
.fa-video::before { content: "🎥"; }
.fa-film::before { content: "🎬"; }
.fa-music::before { content: "♫"; }
.fa-play::before { content: "▶"; }
.fa-pause::before { content: "⏸"; }
.fa-stop::before { content: "⏹"; }
.fa-forward::before { content: "⏩"; }
.fa-backward::before { content: "⏪"; }
.fa-sync::before { content: "↻"; }
.fa-spinner::before { content: "⟳"; animation: spin 1s linear infinite; }
.fa-refresh::before { content: "🔄"; }
.fa-check-circle::before { content: "✓"; color: #51cf66; }
.fa-exclamation-circle::before { content: "⚠"; color: #ffc107; }
.fa-info-circle::before { content: "ℹ"; color: #0d6efd; }
.fa-arrow-left::before { content: "←"; }
.fa-arrow-right::before { content: "→"; }
.fa-chevron-up::before { content: "⌃"; }
.fa-chevron-down::before { content: "⌄"; }
.fa-chevron-left::before { content: "‹"; }
.fa-chevron-right::before { content: "›"; }
.fa-bars::before { content: "☰"; }
.fa-hamburger::before { content: "☰"; }
.fa-cog::before { content: "⚙"; }
.fa-gear::before { content: "⚙"; }
.fa-exclamation::before { content: "!"; }
.fa-exclamation-triangle::before { content: "△"; }
.fa-question::before { content: "?"; }
.fa-list::before { content: "☰"; }
.fa-link::before { content: "🔗"; }
.fa-code::before { content: "</\>"; }
.fa-database::before { content: "🗄"; }
.fa-cloud::before { content: "☁"; }
.fa-cloud-upload-alt::before { content: "☁⬆"; }
.fa-folder::before { content: "📁"; }
.fa-file::before { content: "📄"; }
.fa-file-pdf::before { content: "📕"; }
.fa-image::before { content: "🖼"; }
.fa-credit-card::before { content: "💳"; }
.fa-money::before { content: "💵"; }
.fa-dollar::before { content: "$"; }
.fa-eye::before { content: "👁"; }
.fa-eye-slash::before { content: "👁‍🗨"; }
.fa-share::before { content: "↗"; }
.fa-reply::before { content: "↙"; }
.fa-quote-left::before { content: """; }
.fa-quote-right::before { content: """; }
.fa-flag::before { content: "🚩"; }
.fa-bookmark::before { content: "🔖"; }
.fa-comment::before { content: "💬"; }
.fa-comments::before { content: "💬"; }
.fa-thumbs-up::before { content: "👍"; }
.fa-thumbs-down::before { content: "👎"; }
.fa-fire::before { content: "🔥"; }
.fa-hourglass-half::before { content: "⏳"; }
.fa-hourglass-end::before { content: "⏱"; }
.fa-lightbulb::before { content: "💡"; }
.fa-target::before { content: "🎯"; }
.fa-palette::before { content: "🎨"; }
.fa-key::before { content: "🔑"; }
.fa-unlock::before { content: "🔓"; }
.fa-map::before { content: "🗺"; }
.fa-location::before { content: "📍"; }

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.fa-spin {
  animation: spin 1s linear infinite;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: 0.75em;
  vertical-align: -0.0667em;
}

.fa-2x { font-size: 2em; }
.fa-3x { font-size: 3em; }
.fa-5x { font-size: 5em; }

.fa-primary { color: #FF6B6B; }
.fa-success { color: #51cf66; }
.fa-warning { color: #ffc107; }
.fa-danger { color: #dc3545; }
.fa-info { color: #0d6efd; }
