/* App brand font — Orbitron Medium (added 2026-09-04). The TTF is copied to
   dist/fonts/ by the CopyWebpackPlugin rule in web/webpack.config.js. The
   family name matches the fontFamily used in src/ so web resolves the same
   name iOS and Android resolve from the bundled TTF. */
@font-face {
  font-family: 'Orbitron-Medium';
  src: url('./fonts/Orbitron-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron-SemiBold';
  src: url('./fonts/Orbitron-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Orbitron-Bold';
  src: url('./fonts/Orbitron-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'FontAwesome';
  src: url('./fonts/FontAwesome.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

@font-face {
  font-family: 'MaterialCommunityIcons';
  src: url('./fonts/MaterialCommunityIcons.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

input {
  outline: none !important;
}