/* Font Awesome Local Fallback */
@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url('/webfonts/fa-solid-900.woff2') format('woff2');
}

@font-face {
  font-family: 'Font Awesome 5 Free';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('/webfonts/fa-regular-400.woff2') format('woff2');
}

/* Basic icon styles */
.fas {
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 900;
}

.far {
  font-family: 'Font Awesome 5 Free', sans-serif;
  font-weight: 400;
}

/* Common dashboard icons */
.fa-tachometer-alt:before { content: "\f3fd"; }
.fa-home:before { content: "\f015"; }
.fa-gavel:before { content: "\f0e3"; }
.fa-hand-paper:before { content: "\f256"; }
.fa-heart:before { content: "\f004"; }
.fa-file-contract:before { content: "\f56c"; }
.fa-tools:before { content: "\f7d9"; }
.fa-user:before { content: "\f007"; }
.fa-sign-out-alt:before { content: "\f2f5"; }
.fa-bars:before { content: "\f0c9"; }
.fa-user-circle:before { content: "\f2bd"; }
.fa-bell:before { content: "\f0f3"; }
.fa-chevron-down:before { content: "\f078"; }
.fa-times:before { content: "\f00d"; }
.fa-eye:before { content: "\f06e"; }
.fa-file-alt:before { content: "\f15c"; }
.fa-plus-circle:before { content: "\f055"; }
.fa-envelope:before { content: "\f0e0"; }
.fa-lock:before { content: "\f023"; }
.fa-sign-in-alt:before { content: "\f2f6"; }
.fa-user-plus:before { content: "\f234"; }
.fa-spinner:before { content: "\f110"; }
.fa-circle-notch:before { content: "\f1ce"; }
.fa-comment:before { content: "\f075"; }
.fa-file:before { content: "\f15b"; }

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

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