/* ==========================================================================
   Coverage benchmarks — Administration → Geo Location → Coverage Benchmarks
   --------------------------------------------------------------------------
   The tab shipped five `ng-coverage__*` hooks and no rules for any of them,
   so the guidance list rendered as a raw browser <ul> — disc bullets, 40px
   indent, vendor line-height — inside an otherwise styled modal.

   Every colour here is a semantic token so both themes follow; the guidance
   panel deliberately sits on `--color-bg-raised` rather than a light scale
   tint, which would stay light and glare on the dark page.
   ========================================================================== */

/* Tab intro ---------------------------------------------------------------- */

.ng-coverage__intro {
    max-width: 90ch;
    margin: 0 0 var(--space-4);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    color: var(--color-text-muted);
}

/* Toolbar: level + year selects, then the export / upload pair --------------- */

.ng-coverage__toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.ng-coverage__toolbar .form-group {
    margin-bottom: 0;
}

/* Pushes the actions to the trailing edge without a spacer element. */
.ng-coverage__actions {
    display: flex;
    gap: var(--space-2);
    margin-left: auto;
}

/* Coverage of the level, and whether the population tier can convert -------- */

.ng-coverage__status {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-1) var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* Upload guidance ---------------------------------------------------------- */

.ng-coverage__help {
    margin: 0 0 var(--space-5);
    padding: var(--space-1) var(--space-4);
    /* Reset the vendor list: these are labelled rules, not enumerated steps,
       and a disc bullet fights the term for the start of the line. */
    list-style: none;
    background: var(--color-bg-raised);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-md);
}

.ng-coverage__help-item {
    padding: var(--space-3) 0;
}

/* Hairlines between rules, not around them — the panel border already closes
   the block, so a rule above the first item would double it. */
.ng-coverage__help-item + .ng-coverage__help-item {
    border-top: 1px solid var(--color-border-subtle);
}

.ng-coverage__help-term {
    display: block;
    margin-bottom: var(--space-1);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-semibold);
    line-height: 1.35;
    color: var(--color-text-strong);
}

.ng-coverage__help-body {
    display: block;
    font-size: var(--font-size-xs);
    line-height: 1.5;
    color: var(--color-text-muted);
}
