/* Shared chrome for Portal's own pages (login portal, hub doors, alerts). Lives
   in a static file rather than an inline <style> block so the credential pages
   can run under CSP style-src 'self' with no 'unsafe-inline' — see the header
   middleware in Program.cs. */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: #070b16;
    color: #e2e8f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
}

/* The brand lockup lives in brand-lockup.css — shared with the Admin and
   Account shells, which cannot load this file. Layouts link both. */

@keyframes cp-spin { to { transform: rotate(360deg); } }
@keyframes cp-shimmer { 0% { background-position: 0% 50%; } 100% { background-position: 200% 50%; } }
@keyframes cp-drift { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(26px,-14px); } }
@keyframes cp-drift-2 { 0%, 100% { transform: translate(0,0); } 50% { transform: translate(-20px,10px); } }
@keyframes cp-portal-pulse {
    0%, 100% { transform: scale(1); filter: brightness(.9); }
    50% { transform: scale(1.018); filter: brightness(1.15); }
}
@keyframes cp-glow { 0%, 100% { opacity: .72; } 50% { opacity: 1; } }
@keyframes cp-door-in { from { opacity: .45; transform: scale(.955); } to { opacity: 1; transform: scale(1); } }
@keyframes cp-thumb-mobile { from { transform: translateY(0); } to { transform: translateY(566px); } }

/* ── Auth surface (login, signup, reset, passkey) ───────────────────────────
   The sign-in floats inside a shimmering portal ring — no inner card. */

.auth-stage {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
}

.aurora-a, .aurora-b { position: absolute; border-radius: 50%; pointer-events: none; }
.aurora-a {
    top: -160px; left: -120px; width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(56,189,248,.18), transparent 65%);
    animation: cp-drift 11s ease-in-out infinite;
}
.aurora-b {
    bottom: -180px; right: -140px; width: 460px; height: 460px;
    background: radial-gradient(circle, rgba(167,139,250,.15), transparent 65%);
    animation: cp-drift-2 13s ease-in-out infinite;
}

.portal { position: relative; width: 620px; height: 620px; flex: none; display: flex; align-items: center; justify-content: center; }

.portal-ring { position: absolute; inset: 0; border-radius: 50%; animation: cp-portal-pulse 3.6s ease-in-out infinite; }
.portal-ring::before, .portal-ring::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: conic-gradient(from 0deg, #38bdf8, #7dd3fc, #a78bfa, #6366f1, #38bdf8, #a78bfa, #38bdf8);
    animation: cp-spin 9s linear infinite;
}
.portal-ring::before { inset: -6px; filter: blur(14px); opacity: .55; }
.portal-ring::after { inset: 0; }

.portal-core { position: absolute; inset: 8px; border-radius: 50%; background: #070b16; z-index: 1; }
.portal-core::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(circle, transparent 55%, rgba(56,189,248,.12) 82%, rgba(167,139,250,.18) 100%);
}

.portal-orbit {
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px dashed rgba(56,189,248,.22);
    animation: cp-spin 50s linear infinite;
}

.portal-content { position: relative; z-index: 2; width: 300px; display: flex; flex-direction: column; }
.portal-content .brand-lockup { align-self: center; }

.tagline { text-align: center; color: #64748b; font-size: 13px; margin: 12px 0 30px; }

.field { margin-bottom: 14px; }

input[type=text], input[type=email], input[type=password] {
    width: 100%;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 12px;
    color: #e2e8f0;
    font-family: inherit;
    font-size: 14.5px;
    padding: 14px 16px;
    outline: none;
    text-align: center;
    transition: border-color .15s, box-shadow .15s;
}
input[type=text]:focus, input[type=email]:focus { border-color: #38bdf8; box-shadow: 0 0 0 3px rgba(56,189,248,.15); }
input[type=password]:focus { border-color: #a78bfa; box-shadow: 0 0 0 3px rgba(167,139,250,.15); }

label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 6px;
    text-align: center;
}

.field-error { display: block; color: #f87171; font-size: 12px; margin-top: 6px; text-align: center; }

button {
    width: 100%;
    border: none;
    border-radius: 12px;
    color: #0a0e1a;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    padding: 14px;
    background: linear-gradient(90deg, #38bdf8, #a78bfa, #38bdf8);
    background-size: 200% 100%;
    box-shadow: 0 8px 24px rgba(99,150,250,.25);
    animation: cp-shimmer 5s linear infinite;
    transition: transform .15s, box-shadow .15s;
}
button:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(99,150,250,.4); }

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255,255,255,.14);
    color: #e2e8f0;
    font-size: 14px;
    font-weight: 600;
    padding: 12px;
    box-shadow: none;
    animation: none;
    transition: border-color .15s;
}
.btn-secondary:hover { border-color: #a78bfa; transform: none; box-shadow: none; }

.btn-danger { background: #ef4444; color: #fff; animation: none; box-shadow: none; }

.divider { display: flex; align-items: center; gap: 12px; margin: 16px 0; color: #475569; font-size: 11.5px; }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,.08); }

.alert { border-radius: 12px; font-size: 13px; padding: 10px 14px; margin-bottom: 16px; text-align: center; }
.alert-error { background: rgba(239,68,68,.12); border: 1px solid rgba(239,68,68,.3); color: #f87171; }
.alert-success { background: rgba(52,211,153,.12); border: 1px solid rgba(52,211,153,.3); color: #34d399; }

.links { text-align: center; margin-top: 20px; font-size: 12.5px; color: #64748b; }
a { color: #38bdf8; text-decoration: none; }
a:hover { color: #7dd3fc; }
.links span { margin: 0 8px; }

h1 { font-size: 20px; text-align: center; margin-bottom: 20px; color: #f1f5f9; }

/* Hidden until passkey-login.js has an error to show (it toggles
   element.style.display, which CSP permits — only markup-borne inline
   styles are barred). */
#passkey-login-error { display: none; margin-top: 14px; }

/* ── Hub: the doors ────────────────────────────────────────────────────────
   Each app is a door; hovering widens it within its row. Rows snap-scroll one
   at a time, with slim gradient rails on both edges showing position. */

.hub {
    /* Fills the viewport rather than sitting in the middle of it. The doors
       were a fixed 460px, which on anything taller than a laptop left the Hub
       floating in a field of empty background. One custom property sizes the
       scroller, the rails and every row together — they have to agree or the
       snap points stop lining up with the rail.
       The subtrahend is the chrome above and below: 26+24 padding, the head
       row and its margin, the foot and its margin. max() keeps a row usable
       on a short window instead of collapsing it. */
    --door-h: max(360px, calc(100vh - 150px));

    height: 100vh;
    position: relative;
    overflow: hidden;
    padding: 26px 36px 24px;
    display: flex;
    flex-direction: column;
}
.hub::before {
    content: "";
    position: absolute;
    top: -220px; left: -140px;
    width: 520px; height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,189,248,.14), transparent 65%);
    pointer-events: none;
}

.hub-head { position: relative; display: flex; align-items: center; gap: 24px; margin-bottom: 20px; }
.hub-head .brand-lockup-sm { flex: none; }

.hub-search { position: relative; flex: 1; max-width: 520px; margin: 0 auto; }
.hub-search input {
    border-radius: 999px;
    background: rgba(15,21,36,.85);
    border-color: rgba(255,255,255,.12);
    font-size: 13px;
    padding: 7px 42px 7px 16px;
    text-align: left;
}
.hub-search input:focus { border-color: #38bdf8; box-shadow: 0 0 0 4px rgba(56,189,248,.12); }
.hub-search kbd {
    position: absolute;
    right: 12px;
    top: 50%;
    margin-top: -9px;
    font-size: 10px;
    font-family: ui-monospace, Menlo, monospace;
    color: #475569;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 6px;
    padding: 1px 6px;
}

.user-menu { position: relative; flex: 0 0 auto; }
.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 7px;
    width: auto;
    padding: 4px 10px 4px 5px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 999px;
    color: #e2e8f0;
    font-size: 12px;
    font-weight: 400;
    box-shadow: none;
    animation: none;
    transition: background .14s;
}
.user-menu-trigger:hover { background: rgba(255,255,255,.1); transform: none; box-shadow: none; }
.user-avatar-wrap { position: relative; display: inline-flex; flex: 0 0 auto; }
.user-avatar {
    width: 22px; height: 22px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, #38bdf8, #a78bfa);
    color: #0a0e1a; font-weight: 700; font-size: 10.5px;
}
.user-menu-dot {
    position: absolute; top: -2px; right: -2px;
    width: 8px; height: 8px; border-radius: 50%;
    background: #ffb347; box-shadow: 0 0 0 2px #070b16;
}
.user-menu-name { max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.user-menu-caret { color: #64748b; flex: 0 0 auto; transition: transform .14s; }
.user-menu-trigger[aria-expanded="true"] .user-menu-caret { transform: rotate(180deg); }
.user-menu-panel {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 200px;
    background: #131c2f;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 14px;
    padding: 6px;
    z-index: 100;
    box-shadow: 0 20px 40px rgba(0,0,0,.5);
    display: none;
}
.user-menu-panel.open { display: block; }
.user-menu-item {
    display: flex; align-items: center; gap: 8px;
    width: 100%; padding: 8px 10px;
    border: none; border-radius: 8px;
    background: transparent; color: #e2e8f0;
    font-size: 13px; font-weight: 400; font-family: inherit;
    text-align: left; text-decoration: none; cursor: pointer;
    box-shadow: none; animation: none;
}
.user-menu-item:hover { background: rgba(255,255,255,.06); transform: none; box-shadow: none; }
.user-menu-item.danger { color: #f87171; }
.user-menu-item.danger:hover { background: rgba(239,68,68,.08); }
.user-menu-item .user-menu-badge { margin-left: auto; }
.user-menu-divider { height: 1px; background: rgba(255,255,255,.1); margin: 6px 4px; }
.user-menu-panel .logout-form { margin: 0; width: 100%; }
.badge {
    min-width: 26px;
    text-align: center;
    background: linear-gradient(90deg, #38bdf8, #a78bfa);
    color: #0a0e1a;
    font-weight: 800;
    font-size: 12px;
    border-radius: 999px;
    padding: 3px 9px;
}
.badge.zero { background: rgba(148,163,184,.25); color: #94a3b8; }

/* Snap viewport + rails */
.door-scroll {
    position: relative;
    height: var(--door-h);
    flex: none;
    overflow-y: auto;
    scroll-snap-type: y mandatory;
    overscroll-behavior: contain;
    scrollbar-width: none;
}
.door-scroll::-webkit-scrollbar { display: none; }

.rails { position: sticky; top: 0; height: 0; z-index: 10; }
.rail {
    position: absolute;
    top: 0;
    width: 4px;
    height: var(--door-h);
    border-radius: 999px;
    background: rgba(255,255,255,.06);
}
.rail.left { left: 0; }
.rail.right { right: 0; }
.rail span {
    display: block;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, #38bdf8, #a78bfa);
    box-shadow: 0 0 8px rgba(99,150,250,.55);
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-fill-mode: both;
    animation-timeline: scroll(nearest);
}

/* The thumb is one row tall and travels the rest of the rail, so it reads as
   which row you're on. Both numbers depend on how many rows there are — ten
   apps make three, a guest pass can make one — so the count arrives as
   data-rows instead of being baked in. translateY is a percentage of the
   THUMB, hence travel of (rows - 1) x 100%. */
.door-scroll[data-rows="1"] .rail span { height: 100%; animation-name: none; }
.door-scroll[data-rows="2"] .rail span { height: 50%;     animation-name: cp-thumb-2; }
.door-scroll[data-rows="3"] .rail span { height: 33.333%; animation-name: cp-thumb-3; }
.door-scroll[data-rows="4"] .rail span { height: 25%;     animation-name: cp-thumb-4; }

@keyframes cp-thumb-2 { to { transform: translateY(100%); } }
@keyframes cp-thumb-3 { to { transform: translateY(200%); } }
@keyframes cp-thumb-4 { to { transform: translateY(300%); } }

.door-row {
    display: flex;
    gap: 10px;
    height: var(--door-h);
    padding: 0 14px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
}
.door-row + .door-row { margin-top: 10px; }

.door {
    position: relative;
    flex: 1;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: #0c1322;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 18px;
    padding: 18px;
    text-decoration: none;
    transition: flex-grow .35s cubic-bezier(.2,.7,.2,1), border-color .2s;
}
.door:hover { flex-grow: 2.4; }

/* Preview zone — drop a screenshot or app logo in as .door-tint's
   background-image; the fade below keeps the name legible over it. */
.door-tint { position: absolute; inset: 0; background-size: cover; background-position: top center; }
.door-tint::after {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(148,163,184,.05) 0 10px, transparent 10px 20px);
}
.door-placeholder {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 65%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9.5px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #3b465c;
    font-family: ui-monospace, Menlo, monospace;
}
.door-fade {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 55%;
    background: linear-gradient(180deg, transparent, #0b1120 80%);
}
.door-ms {
    position: absolute;
    top: 14px; left: 16px;
    font-size: 11px;
    font-family: ui-monospace, Menlo, monospace;
    color: #34d399;
    white-space: nowrap;
}
.door.down { opacity: .6; }

/* Doors carrying a real screenshot (see Hub.cshtml's shot roster) hide the
   "preview / logo" placeholder — it exists to mark the ones still missing art. */
.door.has-shot .door-placeholder { display: none; }
.door.down .door-ms { color: #f87171; }
.door-name { position: relative; font-size: 16px; font-weight: 700; color: #f1f5f9; white-space: nowrap; }
.door-desc {
    position: relative;
    font-size: 11.5px;
    color: #94a3b8;
    margin-top: 3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Per-app hue */
.door.h-launches:hover { border-color: oklch(75% 0.12 230); }
.door.h-launches .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 230 / .5), rgba(12,19,34,.2)),
        url("../img/doors/launches.png");
}
.door.h-stock:hover { border-color: oklch(75% 0.12 160); }
.door.h-stock .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 160 / .5), rgba(12,19,34,.2)),
        url("../img/doors/stock.png");
}
.door.h-fuel:hover { border-color: oklch(75% 0.12 85); }
.door.h-fuel .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 85 / .5), rgba(12,19,34,.2)),
        url("../img/doors/fuel.png");
}
.door.h-news:hover { border-color: oklch(75% 0.12 300); }
.door.h-news .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 300 / .5), rgba(12,19,34,.2)),
        url("../img/doors/news.jpg");
}
.door.h-mortgage:hover { border-color: oklch(75% 0.12 20); }
.door.h-mortgage .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 20 / .5), rgba(12,19,34,.2)),
        url("../img/doors/mortgage.png");
}
.door.h-records:hover { border-color: oklch(75% 0.12 200); }
.door.h-records .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 200 / .5), rgba(12,19,34,.2)),
        url("../img/doors/records.png");
}
.door.h-homes:hover { border-color: oklch(75% 0.12 260); }
.door.h-homes .door-tint { background-image: linear-gradient(180deg, oklch(28% 0.05 260 / .5), rgba(12,19,34,.2)); }

/* Wheels, Roles and Returns landed after the design was drawn — same oklch
   recipe, picking hues the existing seven leave free. */
.door.h-wheels:hover { border-color: oklch(75% 0.12 130); }
.door.h-wheels .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 130 / .5), rgba(12,19,34,.2)),
        url("../img/doors/wheels.png");
}
.door.h-roles:hover { border-color: oklch(75% 0.12 320); }
.door.h-roles .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 320 / .5), rgba(12,19,34,.2)),
        url("../img/doors/roles.png");
}
.door.h-returns:hover { border-color: oklch(75% 0.12 180); }
.door.h-returns .door-tint { background-image: linear-gradient(180deg, oklch(28% 0.05 180 / .5), rgba(12,19,34,.2)); }
.door.h-aerocover:hover { border-color: oklch(75% 0.12 50); }
.door.h-aerocover .door-tint {
    background-image:
        linear-gradient(180deg, oklch(28% 0.05 50 / .5), rgba(12,19,34,.2)),
        url("../img/doors/aerocover.png");
}
.door.h-travel:hover { border-color: oklch(75% 0.12 350); }
.door.h-travel .door-tint { background-image: linear-gradient(180deg, oklch(28% 0.05 350 / .5), rgba(12,19,34,.2)); }

/* An app this account holds no flag for. Shown rather than hidden — you can
   see what exists without being able to open it — so it reads as a closed
   door, not a missing one. Guests never reach this state: their Hub lists
   only what the pass includes. */
.door.locked { opacity: .38; cursor: default; }
.door.locked:hover { flex-grow: 1; border-color: rgba(255,255,255,.08); }
.door.locked .door-ms { color: #64748b; }

.hub-foot { position: relative; display: flex; align-items: center; justify-content: space-between; margin-top: 16px; }
.hub-approvals { font-size: 12.5px; font-weight: 600; color: #a78bfa; }
.hub-approvals:hover { color: #c4b5fd; }
.hub-updated {
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #3b465c;
    font-family: ui-monospace, Menlo, monospace;
}

/* ── Hub, mobile ───────────────────────────────────────────────────────────
   Doors stack full-width and wake as they scroll into view; rails carry over,
   the thumb is one tile tall so it maps to which door you're on. */

@media (max-width: 720px) {
    .hub { padding: 16px 14px 12px; justify-content: flex-start; }
    .hub::before {
        top: -70px; left: -80px; width: 260px; height: 260px;
        background: radial-gradient(circle, rgba(56,189,248,.22), transparent 65%);
        animation: cp-glow 4s ease-in-out infinite;
    }
    .hub-head { flex-wrap: wrap; gap: 12px; }
    .hub-search { order: 3; flex: 1 0 100%; max-width: none; margin: 0; }
    .hub-search kbd { display: none; }
    .user-menu-name { display: none; }

    .door-scroll { height: 660px; scroll-snap-type: y proximity; }
    .rail { width: 3px; height: 660px; }
    .door-scroll[data-rows] .rail span { width: 3px; height: 94px; animation-name: cp-thumb-mobile; }

    .door-row {
        flex-direction: column;
        gap: 10px;
        height: auto;
        padding: 0 12px;
        scroll-snap-align: none;
    }
    .door {
        height: 150px;
        flex: none;
        border-radius: 16px;
        padding: 14px 16px;
        scroll-snap-align: start;
        animation: cp-door-in linear both;
        animation-timeline: view();
        animation-range: entry 0% entry 100%;
    }
    .door:hover { flex-grow: 0; }
    .door-placeholder { height: 60%; font-size: 9px; }
    .door-fade { height: 60%; }
    .door-ms { top: 11px; left: 14px; font-size: 10.5px; }
    .door-name, .door-desc { white-space: normal; }

    .hub-foot { justify-content: center; padding-top: 10px; }
    .hub-approvals { display: none; }
    .hub-updated { font-size: 9.5px; }

    .portal { width: 100%; height: auto; }
    .portal-ring, .portal-orbit, .portal-core { display: none; }
    .portal-content { width: 100%; max-width: 320px; }
}

/* ── Passkey management (/Account/Passkeys) ─────────────────────────────── */

.pk-hidden { display: none; }
.pk-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.pk-empty { color: #64748b; font-size: 13px; text-align: center; }

.pk-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 12px 14px;
}
.pk-row.pk-stale { border-color: rgba(239,68,68,.35); }
.pk-row-main { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.pk-name { font-size: 14px; font-weight: 600; color: #e2e8f0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pk-meta { font-size: 12px; color: #94a3b8; }
.pk-stale .pk-meta { color: #f87171; }

.pk-remove {
    width: auto;
    flex: 0 0 auto;
    margin: 0;
    padding: 8px 12px;
    font-size: 12.5px;
    background: transparent;
    border: 1px solid rgba(239,68,68,.4);
    color: #f87171;
    box-shadow: none;
    animation: none;
}
.pk-remove:hover { background: rgba(239,68,68,.1); transform: none; box-shadow: none; }

#pk-last-delete { margin-top: 6px; }
#pk-last-delete .btn-secondary { margin-top: 8px; }

/* Legacy wrapper — pages not yet moved onto .auth-stage still render sanely. */
.card { width: 100%; max-width: 420px; margin: 0 auto; }
.app-links { display: flex; flex-direction: column; gap: 12px; margin: 28px 0; }
.app-name { font-size: 16px; font-weight: 700; color: #e2e8f0; }
.app-desc { font-size: 12.5px; color: #94a3b8; }
.logout-form { margin-top: 8px; }

/* ── Email-first sign-in, step two ─────────────────────────────────────────
   The address is already settled by this point, so the step names itself and
   shows which account it's asking about. */

.stage-label {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 14px;
}

.signed-as {
    text-align: center;
    font-size: 12.5px;
    color: #94a3b8;
    margin-top: 14px;
}
.signed-as a { margin-left: 8px; font-size: 12px; }
