/**
 * Listing status badge - the only new component in this family.
 *
 * Built entirely from existing design tokens: the same pill geometry as
 * .abp5-ngc-soon, the panel grey (#eef1f6 / #5b6270) for provisional and the
 * CTA green (#0a7d33) for verified. No new colours are introduced.
 */

.ngc-status {
    display: inline-block;
    padding: 2px 9px;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
}

.ngc-status--provisional {
    background: #eef1f6;
    color: #5b6270;
}

.ngc-status--verified {
    background: #0a7d33;
    color: #ffffff;
}

/* Status legend shown under the launch table */
.ngc-status-legend {
    margin: 12px 0 0;
    font-size: .88rem;
    color: #5b6270;
}

.ngc-status-legend .ngc-status {
    margin-right: 4px;
}
