/* Top bar base */
.topbar-colors {
    background: #fff;
    /* live default */
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

/* Test environment visual cue (pale warning pink) */
.topbar-colors--notlive {
    background: #ffe8ef !important;
    border-bottom-color: #ffc2d0 !important;
}

/* Right side badges */
.env-badges {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    margin-left: auto;
    /* pushes to right */
    margin-right: 1rem;
    /* spacing */
}

.env-badge {
    font-size: .9rem;
    line-height: 1;
    color: #333;
}

.env-badge strong {
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 12px;
    color: #fff;
    background: #2e7d32;
    /* live: green */
}

.topbar-colors--notlive .env-badge strong {
    background: #d32f2f;
}
