/* Self-hosted Font Awesome 6.6.0 subset — only the glyphs this app actually
 * uses, so we don't pull the full ~100KB stylesheet + ~275KB of webfonts from a
 * third-party CDN (cdnjs) on the render-blocking critical path. The solid font
 * here was produced with pyftsubset (157KB -> ~2KB); see README.md to regenerate.
 *
 * Note: the Tesla brand icon (fa-tesla) is intentionally NOT included — it was
 * removed from Font Awesome at Tesla's request, and we avoid their trademarked
 * logo. Those spots use the neutral fa-car glyph instead.
 */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/vendor/fontawesome/fa-solid-900-subset.woff2") format("woff2");
}

.fa,
.fas,
.fa-solid {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-rendering: auto;
}

/* Icon glyphs (codepoints match Font Awesome 6.6.0). Class names keep the v4/v5
 * aliases used in the markup (e.g. fa-shield-alt -> shield-halved \f3ed). */
.fa-arrow-right::before { content: "\f061"; }
.fa-bell::before { content: "\f0f3"; }
.fa-car::before { content: "\f1b9"; }
.fa-check::before { content: "\f00c"; }
.fa-check-circle::before { content: "\f058"; }
.fa-clock::before { content: "\f017"; }
.fa-comment-sms::before { content: "\f7cd"; }
.fa-gauge-high::before { content: "\f625"; }
.fa-history::before { content: "\f1da"; }
.fa-plus::before { content: "\2b"; }
.fa-shield-alt::before { content: "\f3ed"; }
.fa-spinner::before { content: "\f110"; }
.fa-times::before { content: "\f00d"; }
.fa-trash::before { content: "\f1f8"; }

/* Spinner animation (used by fa-spinner in the auth-loading state). */
@keyframes fa-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.fa-spin {
  animation: fa-spin 2s infinite linear;
}
