/* =============================================================================
   admin-section-bar.css
   Section bar: module name + optional left/right actions.
   Height is the 3.5rem track in admin-layout.css.
   ============================================================================= */

.admin-section-bar {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 3.5rem;
    padding: 0 1rem;
    box-sizing: border-box;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    color: var(--text);
}

.admin-section-left { justify-self: start; }
.admin-section-centre { justify-self: center; }
.admin-section-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.admin-section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.45rem 1.15rem;
    border-radius: 0.45rem;
    color: #f8fafc;
    background: var(--ubn-grad-chip);
    border: 1px solid rgba(56, 189, 248, 0.45);
    box-shadow:
        0 0 0 1px rgba(14, 165, 233, 0.15),
        0 6px 18px rgba(15, 48, 84, 0.45);
    user-select: none;
    -webkit-user-select: none;
}

.shell-toggle {
    font: 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    color: #e2e8f0;
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.25rem;
    padding: 0.3rem 0.45rem;
    cursor: pointer;
}

.shell-toggle.is-off {
    opacity: 0.45;
}
