/**
 * Font Awesome 6 Free — подмножество иконок проекта «Небула».
 * Вместо полного all.min.css (~70+ KB CSS) — только используемые глифы.
 * Шрифт хранится локально в static/webfonts, чтобы интерфейс не зависел от CDN.
 */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url("/webfonts/fa-solid-900.woff2") format("woff2");
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-solid::before {
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

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

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

/* Solid */
.fa-moon::before { content: "\f186"; }
.fa-sun::before { content: "\f185"; }
.fa-gear::before { content: "\f013"; }
.fa-user::before { content: "\f007"; }
.fa-shield-halved::before { content: "\f3ed"; }
.fa-arrow-left::before { content: "\f060"; }
.fa-bell-slash::before { content: "\f1f6"; }
.fa-magnifying-glass::before { content: "\f002"; }
.fa-spinner::before { content: "\f110"; }
.fa-paperclip::before { content: "\f0c6"; }
.fa-xmark::before { content: "\f00d"; }
.fa-hourglass-half::before { content: "\f252"; }
.fa-chevron-down::before { content: "\f078"; }
.fa-microphone::before { content: "\f130"; }
.fa-clock::before { content: "\f017"; }
.fa-paper-plane::before { content: "\f1d8"; }
.fa-thumbtack::before { content: "\f08d"; }
.fa-check::before { content: "\f00c"; }
.fa-check-double::before { content: "\f560"; }
.fa-expand::before { content: "\f065"; }
.fa-image::before { content: "\f03e"; }
.fa-video::before { content: "\f03d"; }
.fa-music::before { content: "\f001"; }
.fa-file-lines::before { content: "\f15c"; }
.fa-ban::before { content: "\f05e"; }
.fa-stopwatch::before { content: "\f2f2"; }
.fa-hourglass::before { content: "\f254"; }
.fa-hourglass-end::before { content: "\f253"; }
.fa-copy::before { content: "\f0c5"; }
.fa-reply::before { content: "\f3e5"; }
.fa-pen::before { content: "\f304"; }
.fa-wand-magic-sparkles::before { content: "\f72b"; }
.fa-trash::before { content: "\f1f8"; }
.fa-face-smile::before { content: "\f118"; }
.fa-flag::before { content: "\f024"; }

