/* Shared authenticated-page header. Pure CSS so it works on both Tailwind
   and non-Tailwind pages identically (mirrors bex_footer.css approach). */

.bex-auth-header {
    background: #0f172a;
    color: #f1f5f9;
    padding: 14px 24px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px;
    border-bottom: 1px solid #334155;
}

.bex-auth-header-left {
    min-width: 0;
}

.bex-auth-header h1 {
    margin: 0;
    font-family: "Jura", sans-serif;
    color: #07c107;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.2;
}

.bex-auth-header-subtitle {
    margin: 4px 0 0;
    font-size: 13px;
    color: #94a3b8;
}

.bex-auth-header-retention {
    margin: 2px 0 0;
    font-size: 12px;
    color: #64748b;
    font-style: italic;
}

.bex-auth-header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    font-size: 12px;
    color: #94a3b8;
    text-align: right;
}

.bex-auth-header-right p {
    margin: 0;
}

.bex-auth-header-user {
    display: flex;
    align-items: center;
    gap: 10px;
}

.bex-auth-header-email {
    color: #cbd5e1;
    font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, "Courier New", monospace;
    font-size: 12px;
}

.bex-auth-header-logout {
    color: #94a3b8;
    text-decoration: underline;
    font-size: 12px;
}

.bex-auth-header-logout:hover {
    color: #f1f5f9;
}
