/**
 * Font Awesome Fallback CSS
 * 
 * Basic icon fallback jika Font Awesome tidak bisa di-load
 * Ini akan memberikan visual indicator minimal
 */

/* Fallback untuk icon yang sering digunakan */
.fas, .far, .fal, .fab, .fa {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", sans-serif;
}

/* Fallback visual jika font tidak ter-load */
.fas::before,
.far::before,
.fal::before,
.fab::before {
    content: "●";
    font-size: 0.8em;
    vertical-align: middle;
}

/* Specific icon fallbacks */
.fa-chevron-up::before { content: "▲"; }
.fa-chevron-down::before { content: "▼"; }
.fa-th-large::before { content: "☰"; }
.fa-tasks::before { content: "☑"; }
.fa-chart-bar::before { content: "📊"; }
.fa-tv::before { content: "📺"; }
.fa-user-circle::before { content: "👤"; }
.fa-sign-out-alt::before { content: "🚪"; }
.fa-clipboard-list::before { content: "📋"; }
.fa-clock::before { content: "🕐"; }
.fa-spinner::before { content: "⟳"; }
.fa-check-circle::before { content: "✓"; }
.fa-filter::before { content: "🔍"; }
.fa-edit::before { content: "✎"; }
.fa-trash::before { content: "🗑"; }
.fa-flag-checkered::before { content: "🏁"; }
.fa-check::before { content: "✓"; }
.fa-exclamation-circle::before { content: "⚠"; }
.fa-exclamation-triangle::before { content: "⚠"; }
.fa-info-circle::before { content: "ℹ"; }
.fa-times::before { content: "✕"; }
.fa-print::before { content: "🖨"; }
.fa-cut::before { content: "✂"; }
.fa-building::before { content: "🏢"; }
.fa-sticky-note::before { content: "📝"; }
.fa-inbox::before { content: "📥"; }
.fa-sync-alt::before { content: "🔄"; }
.fa-plus::before { content: "+"; }
.fa-spin {
    animation: fa-spin 2s infinite linear;
}

@keyframes fa-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


