/* Non-scoped fallback for the portal-launch chrome — mirrors PortalHeader.razor.css
   so if the scoped pipeline is stale, the visible result is still navy + bold. */

.portal-header-container {
    background: linear-gradient(135deg, #001F57 0%, #00296B 55%, #0a3380 100%);
    color: #ffffff;
    padding: 12px 22px;
    position: relative;
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) inset,
                0 6px 22px rgba(0, 18, 54, 0.22);
    overflow: hidden;
    border-bottom: 0;
    font-family: 'Ubuntu', 'Segoe UI', 'Inter', system-ui, sans-serif;
}

.portal-header-container .portal-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.portal-header-container .portal-header-title {
    color: #ffffff;
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.005em;
}

/* Eyebrow + breadcrumb hidden globally — kept for legacy markup compat */
.portal-header-container .portal-header-eyebrow,
.portal-header-container .portal-breadcrumb { display: none !important; }

.portal-header-container .btn-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.10);
    color: rgba(255, 255, 255, 0.86);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 150ms ease, color 150ms ease;
}

.portal-header-container .btn-icon:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #ffffff;
}

.portal-header-container .btn-icon--close:hover {
    background: rgba(239, 68, 68, 0.85);
    border-color: rgba(239, 68, 68, 0.85);
}
