/* Badges for what the intelligence layer detected about the selected aircraft.
   Red states are certain (it landed somewhere it never claimed it would);
   amber states are suspicions we are still watching unfold. */

.flightarrow-events {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.flightarrow-events:not(:empty) {
    margin-bottom: 8px;
}

.flightarrow-event {
    padding: 5px 9px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    border-left: 3px solid;
}

.flightarrow-event.certain {
    background: rgba(211, 47, 47, 0.16);
    border-left-color: #d32f2f;
    color: #ff8a80;
}

.flightarrow-event.suspected {
    background: rgba(245, 166, 35, 0.14);
    border-left-color: #f5a623;
    color: #ffcc80;
}
