/* Custom Icons CSS - Unicode Fallback */
.icon-fallback {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-weight: bold;
    margin-right: 0.25em;
    font-style: normal;
}

/* Navigation Icons */
.custom-home::before { content: "🏠"; }
.custom-clock::before { content: "🕐"; }
.custom-chart::before { content: "📊"; }
.custom-robot::before { content: "��"; }
.custom-menu::before { content: "☰"; }
.custom-blog::before { content: "📰"; }
.custom-gallery::before { content: "🖼️"; }
.custom-faq::before { content: "❓"; }
.custom-map::before { content: "��️"; }
.custom-globe::before { content: "🌐"; }
.custom-moon::before { content: "🌙"; }
.custom-sun::before { content: "☀️"; }
.custom-download::before { content: "⬇️"; }

/* Dashboard Icons */
.custom-tachometer::before { content: "⏱️"; }
.custom-hourglass::before { content: "⏳"; }
.custom-running::before { content: "🏃"; }
.custom-server::before { content: "🖥️"; }
.custom-chart-line::before { content: "📈"; }
.custom-bolt::before { content: "⚡"; }

/* Status Icons */
.custom-check::before { content: "✅"; }
.custom-times::before { content: "❌"; }
.custom-spinner::before { content: "⏳"; }
.custom-cog::before { content: "⚙️"; }

/* Spinning animation */
.custom-spinner {
    animation: spin 2s linear infinite;
}

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