/* Flight category colours */
.cat-VFR    { color: #22c55e; }
.cat-MVFR   { color: #60a5fa; }
.cat-IFR    { color: #ef4444; }
.cat-LIFR   { color: #d946ef; }
.cat-N\/A   { color: #6b7280; }

/* ATC badge colours */
.atc-online  { color: #22c55e; }
.atc-offline { color: #4b5563; }

/* Subtle card entry animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.flight-card { animation: fadeUp 0.25s ease forwards; }

/* Raw METAR monospace block */
.metar-raw {
  font-size: 0.65rem;
  line-height: 1.4;
  word-break: break-all;
  color: #6b7280;
}
