/* /Components/Layout/CommandPalette.razor.rz.scp.css */
.dfl-cmdk[b-yablppu6lq] {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 12vh;
    z-index: 2000;
}

.dfl-cmdk__panel[b-yablppu6lq] {
    width: min(34rem, 92vw);
    background: var(--dfl-surface, #fff);
    color: var(--dfl-text, #16202e);
    border: 1px solid var(--dfl-border, #e5e7eb);
    border-radius: 0.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.dfl-cmdk__input[b-yablppu6lq] {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--dfl-border, #e5e7eb);
    padding: 0.9rem 1rem;
    font-size: 1rem;
    background: transparent;
    color: inherit;
    outline: none;
}

.dfl-cmdk__list[b-yablppu6lq] {
    list-style: none;
    margin: 0;
    padding: 0.35rem;
    max-height: 22rem;
    overflow-y: auto;
}

.dfl-cmdk__list li[b-yablppu6lq] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0.65rem;
    border-radius: 0.4rem;
    cursor: pointer;
}

.dfl-cmdk__list li.is-selected[b-yablppu6lq],
.dfl-cmdk__list li:hover[b-yablppu6lq] {
    background: var(--dfl-surface-alt, #eef4f9);
}

.dfl-cmdk__label[b-yablppu6lq] {
    font-weight: 600;
}

.dfl-cmdk__kind[b-yablppu6lq] {
    font-size: 0.72rem;
    color: var(--dfl-text-muted, #6b7280);
    white-space: nowrap;
}

.dfl-cmdk__empty[b-yablppu6lq] {
    padding: 0.75rem 0.65rem;
    color: var(--dfl-text-muted, #6b7280);
    cursor: default;
}

.dfl-cmdk__hint[b-yablppu6lq] {
    padding: 0.5rem 1rem;
    font-size: 0.68rem;
    color: var(--dfl-text-muted, #6b7280);
    border-top: 1px solid var(--dfl-border, #e5e7eb);
}
/* /Components/Layout/HeaderNavPanel.razor.rz.scp.css */
.dfl-nav[b-kqg6bj63vu] {
    display: flex;
    gap: 0.25rem;
    flex: 1;
    flex-wrap: wrap;
    min-width: 0;
}

.dfl-nav a[b-kqg6bj63vu] {
    color: rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.9);
    text-decoration: none;
    padding: 0.35rem 0.65rem;
    border-radius: 4px;
    white-space: nowrap;
}

.dfl-nav a.active[b-kqg6bj63vu],
.dfl-nav a:hover[b-kqg6bj63vu] {
    background: rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.15);
}

.dfl-user[b-kqg6bj63vu] {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.dfl-user a[b-kqg6bj63vu] {
    color: var(--dfl-on-brand, #fff);
    text-decoration: none;
}

.dfl-user a:hover[b-kqg6bj63vu] {
    text-decoration: underline;
}

.dfl-user a.dfl-profile-link[b-kqg6bj63vu] {
    text-decoration: underline;
}

.dfl-profile-link:hover[b-kqg6bj63vu] {
    opacity: 0.85;
}

.dfl-user[b-kqg6bj63vu]  .dfl-logout-form {
    display: inline;
    margin: 0;
}

.dfl-user[b-kqg6bj63vu]  .dfl-logout-btn {
    background: none;
    border: none;
    padding: 0;
    color: var(--dfl-on-brand, #fff);
    font: inherit;
    cursor: pointer;
    text-decoration: underline;
}

.dfl-user[b-kqg6bj63vu]  .dfl-logout-btn:hover {
    opacity: 0.85;
}

/* Commissioner "you are impersonating" return control — reuses .dfl-logout-btn's link styling but
   flags itself with a contrasting pill so it's obvious the session isn't really this member's. */
.dfl-user[b-kqg6bj63vu]  .dfl-impersonation-return {
    display: inline;
    margin: 0;
}

.dfl-user[b-kqg6bj63vu]  .dfl-impersonation-return .dfl-logout-btn {
    text-decoration: none;
    background: rgba(255, 193, 7, 0.9);
    color: #1a1a1a;
    padding: 0.2rem 0.5rem;
    border-radius: 999px;
    font-weight: 600;
}

/* Duplicated in MainLayout.razor.css — must stay identical between the two files, or the hamburger
   dropdown shows the row-layout nav instead of this stacked one. The same 1900px value also
   appears standalone in Components/Shared/TeamName.razor.css and several places in app.css — grep
   the whole repo for "1900px" before changing this value; don't trust any single file's comment
   list as exhaustive. */
@media (max-width: 1900px) {
    .dfl-nav[b-kqg6bj63vu] {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 0.15rem;
    }

    .dfl-nav a[b-kqg6bj63vu] {
        display: block;
        padding: 0.7rem 0.75rem;
        white-space: normal;
    }

    .dfl-user[b-kqg6bj63vu] {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
        margin-top: 0.55rem;
        padding-top: 0.65rem;
        border-top: 1px solid rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.2);
        width: 100%;
    }
}

/* /Components/Layout/MainLayout.razor.rz.scp.css */
.dfl-shell[b-yzbhfnnxqn] {
    min-height: 100vh;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    background: var(--dfl-bg, #f4f6f8);
    color: var(--dfl-text, #1f2933);
}

/* Header keeps its fixed brand-blue gradient in both themes (same reasoning as the standings hero
   banner in app.css) rather than following the page's light/dark surface color — it's the site's
   masthead, not page content. Only the text/icon/border colors ON TOP of it are tokenized, via
   --dfl-on-brand(-rgb), which is deliberately the SAME value in both themes. */
.dfl-header[b-yzbhfnnxqn] {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.375rem 0.75rem;
    background: linear-gradient(135deg, #0f3d6b, #1a5490);
    color: var(--dfl-on-brand, #fff);
    box-shadow: 0 2px 8px rgba(15, 61, 107, 0.25);
    position: sticky;
    top: 0;
    z-index: 1100;
}

.dfl-brand[b-yzbhfnnxqn] {
    flex-shrink: 0;
    min-width: 0;
}

.dfl-brand-link[b-yzbhfnnxqn] {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    color: var(--dfl-on-brand, #fff);
    text-decoration: none;
}

.dfl-logo[b-yzbhfnnxqn] {
    height: 3rem;
    width: auto;
    flex-shrink: 0;
    display: block;
    object-fit: contain;
}

.dfl-brand-text[b-yzbhfnnxqn] {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    min-width: 0;
}

.dfl-brand-name[b-yzbhfnnxqn] {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.dfl-subtitle[b-yzbhfnnxqn] {
    font-size: 0.75rem;
    opacity: 0.85;
}

.dfl-header-menu[b-yzbhfnnxqn] {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.dfl-header-menu--desktop[b-yzbhfnnxqn] {
    display: flex;
}

.dfl-header-menu--mobile[b-yzbhfnnxqn] {
    display: none;
}

/* The notification bell lives inside HeaderNavPanel's .dfl-user cluster on desktop; at the hamburger
   breakpoint it moves out to sit just left of the toggle (the mobile HeaderNavPanel gets
   ShowBell="false"). Hidden until then. */
.dfl-header__mobile-bell[b-yzbhfnnxqn] {
    display: none;
}

.dfl-header-menu__toggle[b-yzbhfnnxqn] {
    display: none;
    list-style: none;
    cursor: pointer;
    margin: 0;
    margin-left: auto;
    padding: 0.45rem;
    border: 1px solid rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.35);
    border-radius: 8px;
    background: rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.08);
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.6rem;
    height: 2.6rem;
    box-sizing: border-box;
}

.dfl-header-menu__toggle[b-yzbhfnnxqn]::-webkit-details-marker {
    display: none;
}

.dfl-header-menu__bar[b-yzbhfnnxqn] {
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--dfl-on-brand, #fff);
}

.dfl-header-menu__panel[b-yzbhfnnxqn] {
    display: flex;
    flex: 1;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.dfl-login-link[b-yzbhfnnxqn] {
    color: var(--dfl-on-brand, #fff);
    text-decoration: none;
}

.dfl-login-link--header[b-yzbhfnnxqn] {
    margin-left: auto;
    padding: 0.45rem 0.75rem;
    border-radius: 6px;
    background: rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.12);
    font-weight: 600;
}

.dfl-login-link--header:hover[b-yzbhfnnxqn] {
    text-decoration: underline;
}

.dfl-main[b-yzbhfnnxqn] {
    max-width: 97.5%;
    width: 97.5%;
    margin: 0 auto;
    padding: 0.425rem 0 0.625rem;
    box-sizing: border-box;
}

/* This breakpoint is duplicated in HeaderNavPanel.razor.css — must stay identical between the two
   files, or the hamburger dropdown shows the row-layout nav instead of the intended stacked one.
   The same 1900px value also appears standalone in Components/Shared/TeamName.razor.css and in
   several unrelated @media blocks in app.css (that don't need to match each other, just this one
   conceptually) — grep the whole repo for "1900px" before changing this value; the two files named
   above are illustrative, not an exhaustive list. */
@media (max-width: 1900px) {
    .dfl-header-menu--desktop[b-yzbhfnnxqn] {
        display: none;
    }

    .dfl-header-menu--mobile[b-yzbhfnnxqn] {
        display: block;
    }
    .dfl-header[b-yzbhfnnxqn] {
        padding: 0.325rem 0.5rem;
        gap: 0.75rem;
    }

    .dfl-subtitle[b-yzbhfnnxqn] {
        display: none;
    }

    .dfl-logo[b-yzbhfnnxqn] {
        height: 2.5rem;
    }

    .dfl-brand-name[b-yzbhfnnxqn] {
        font-size: 1.25rem;
    }

    /* Bell takes the auto margin so it + the toggle sit together at the right edge, bell first. */
    .dfl-header__mobile-bell[b-yzbhfnnxqn] {
        display: inline-flex;
        align-items: center;
        flex: 0 0 auto;
        margin-left: auto;
    }

    .dfl-header-menu--mobile[b-yzbhfnnxqn] {
        flex: 0 0 auto;
        position: relative;
        margin-left: 0;
    }

    .dfl-header-menu__toggle[b-yzbhfnnxqn] {
        display: inline-flex;
    }

    .dfl-header-menu__panel[b-yzbhfnnxqn] {
        display: none;
        position: absolute;
        top: calc(100% + 0.55rem);
        right: 0;
        left: auto;
        width: min(18rem, calc(100vw - 2rem));
        /* Nav has 11 links plus the user block (theme toggle/avatar/name/profile/logout) — on a
           short phone screen (or landscape) that stack can be taller than the viewport itself.
           Without a max-height + its own scrollbar, the tail end of the menu just renders off the
           bottom edge with no way to reach it. The 5rem reservation is a safe over-estimate of the
           header + toggle + gap space above the panel (real value is ~3.8rem at this breakpoint's
           padding/logo sizes) so the panel never bottoms out past the viewport edge even before its
           own scrollbar kicks in. dvh (falls back to vh where unsupported) tracks the browser
           chrome-adjusted viewport rather than the layout viewport, so mobile address-bar collapse
           doesn't leave a stale max-height. */
        max-height: calc(100dvh - 5rem);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.65rem;
        border-radius: 10px;
        background: linear-gradient(180deg, #1a5490, #0f3d6b);
        border: 1px solid rgba(var(--dfl-on-brand-rgb, 255, 255, 255), 0.18);
        box-shadow: 0 12px 28px rgba(15, 61, 107, 0.35);
    }

    .dfl-header-menu--mobile[open] .dfl-header-menu__panel[b-yzbhfnnxqn] {
        display: flex;
    }
}
/* /Components/Layout/NotificationBell.razor.rz.scp.css */
.dfl-notif[b-gbcqbe8fgg] {
    position: relative;
    display: inline-flex;
}

.dfl-notif__toggle[b-gbcqbe8fgg] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1;
    padding: 0.2rem;
    position: relative;
    color: var(--dfl-on-brand, #fff);
}

.dfl-notif__toggle--active[b-gbcqbe8fgg],
.dfl-notif__toggle:hover[b-gbcqbe8fgg] {
    opacity: 0.85;
}

.dfl-notif__badge[b-gbcqbe8fgg] {
    position: absolute;
    top: -0.15rem;
    right: -0.3rem;
    background: #e53935;
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1;
    padding: 0.15rem 0.3rem;
    border-radius: 999px;
    min-width: 1rem;
    text-align: center;
}

.dfl-notif__panel[b-gbcqbe8fgg] {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 20rem;
    max-width: 90vw;
    background: var(--dfl-surface, #fff);
    color: var(--dfl-text, #16202e);
    border: 1px solid var(--dfl-border, #e5e7eb);
    border-radius: 0.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
    z-index: 1200;
    overflow: hidden;
}

.dfl-notif__panel-head[b-gbcqbe8fgg] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 0.8rem;
    border-bottom: 1px solid var(--dfl-border, #e5e7eb);
    font-size: 0.85rem;
}

.dfl-notif__panel-head a[b-gbcqbe8fgg] {
    color: var(--dfl-brand, #1a5490);
    text-decoration: none;
    font-size: 0.78rem;
}

.dfl-notif__empty[b-gbcqbe8fgg] {
    margin: 0;
    padding: 1rem 0.8rem;
    font-size: 0.85rem;
    color: var(--dfl-text-muted, #6b7280);
}

.dfl-notif__list[b-gbcqbe8fgg] {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 22rem;
    overflow-y: auto;
}

.dfl-notif__list li[b-gbcqbe8fgg] {
    padding: 0.55rem 0.8rem;
    border-bottom: 1px solid var(--dfl-border, #e5e7eb);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

a.dfl-notif__item-text[b-gbcqbe8fgg] {
    min-width: 0;
    flex: 1;
    display: block;
    color: inherit;
    text-decoration: none;
}

a.dfl-notif__item-text:hover .dfl-notif__item-head[b-gbcqbe8fgg] {
    text-decoration: underline;
}

.dfl-notif__item-shortcut[b-gbcqbe8fgg] {
    flex-shrink: 0;
    align-self: center;
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
    opacity: 0.7;
}

.dfl-notif__item-shortcut:hover[b-gbcqbe8fgg] {
    opacity: 1;
}

.dfl-notif__list li:last-child[b-gbcqbe8fgg] {
    border-bottom: none;
}

.dfl-notif__item-head[b-gbcqbe8fgg] {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Team / sport events: headline in the sport's accent colour (--sport-accent set inline). */
.dfl-notif__item-head.is-sport[b-gbcqbe8fgg] {
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

.dfl-notif__item-meta[b-gbcqbe8fgg] {
    font-size: 0.7rem;
    color: var(--dfl-text-muted, #6b7280);
    margin-top: 0.15rem;
}

/* The bell is NOT rendered inside the mobile hamburger dropdown any more — MainLayout passes that
   HeaderNavPanel mount ShowBell="false" and renders a standalone bell beside the toggle instead
   (.dfl-header__mobile-bell in MainLayout.razor.css). That bell sits close to the screen's right
   edge, so a right:0-anchored 20rem panel would clip off the left — pin the panel across the
   viewport just under the header instead. top ≈ header height at the ≤1900px padding/logo sizes. */
.dfl-header__mobile-bell .dfl-notif__panel[b-gbcqbe8fgg] {
    position: fixed;
    top: 3.35rem;
    left: 0.5rem;
    right: 0.5rem;
    width: auto;
    max-width: none;
    max-height: calc(100dvh - 4rem);
    display: flex;
    flex-direction: column;
}

.dfl-header__mobile-bell .dfl-notif__list[b-gbcqbe8fgg] {
    flex: 1;
    min-height: 0;
    max-height: none;
}
/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
/* Recolored from the stock .NET 10 template (background/text/button/spinner colors only) to use
   this app's theme tokens from app.css, so it adapts to light/dark/auto/time like everything else —
   see App.razor's ThemeAttr comment for how data-theme gets set. The template's `&[open] { }` native
   CSS nesting was flattened to a plain #components-reconnect-modal[open] rule to match this project's
   otherwise-unnested CSS style; behavior is unchanged. State-toggle selectors (the *-visible classes,
   the components-reconnect-* class names on the dialog itself) are untouched — ReconnectModal.razor.js
   drives those via showModal()/close()/classList and must not be renamed here without updating that
   file too. */
.components-reconnect-first-attempt-visible[b-7m6ktpjcwf],
.components-reconnect-repeated-attempt-visible[b-7m6ktpjcwf],
.components-reconnect-failed-visible[b-7m6ktpjcwf],
.components-pause-visible[b-7m6ktpjcwf],
.components-resume-failed-visible[b-7m6ktpjcwf],
.components-rejoining-animation[b-7m6ktpjcwf] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-retrying[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-failed[b-7m6ktpjcwf],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-7m6ktpjcwf] {
    display: block;
}

#components-reconnect-modal[b-7m6ktpjcwf] {
    background-color: var(--dfl-surface, #fff);
    color: var(--dfl-text, #1f2937);
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 1px solid var(--dfl-border, #e5e7eb);
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(var(--dfl-shadow-rgb, 0, 0, 0), 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-7m6ktpjcwf 0.5s both;
}

#components-reconnect-modal[open][b-7m6ktpjcwf] {
    animation: components-reconnect-modal-slideUp-b-7m6ktpjcwf 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-7m6ktpjcwf 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

#components-reconnect-modal[b-7m6ktpjcwf]::backdrop {
    background-color: rgba(var(--dfl-shadow-rgb, 0, 0, 0), 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-7m6ktpjcwf 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-7m6ktpjcwf {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-7m6ktpjcwf {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-7m6ktpjcwf {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-7m6ktpjcwf] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-7m6ktpjcwf] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-7m6ktpjcwf] {
    border: 0;
    background-color: var(--dfl-brand, #1a5490);
    color: var(--dfl-on-brand, #fff);
    padding: 4px 24px;
    border-radius: 4px;
    cursor: pointer;
}

#components-reconnect-modal button:hover[b-7m6ktpjcwf] {
    background-color: var(--dfl-brand-dark, #0f3d6b);
}

#components-reconnect-modal button:active[b-7m6ktpjcwf] {
    background-color: var(--dfl-brand, #1a5490);
}

.components-rejoining-animation[b-7m6ktpjcwf] {
    position: relative;
    width: 80px;
    height: 80px;
}

.components-rejoining-animation div[b-7m6ktpjcwf] {
    position: absolute;
    border: 3px solid var(--dfl-brand, #1a5490);
    opacity: 1;
    border-radius: 50%;
    animation: components-rejoining-animation-b-7m6ktpjcwf 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.components-rejoining-animation div:nth-child(2)[b-7m6ktpjcwf] {
    animation-delay: -0.5s;
}

@keyframes components-rejoining-animation-b-7m6ktpjcwf {
    0% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    4.9% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 0;
    }

    5% {
        top: 40px;
        left: 40px;
        width: 0;
        height: 0;
        opacity: 1;
    }

    100% {
        top: 0px;
        left: 0px;
        width: 80px;
        height: 80px;
        opacity: 0;
    }
}
/* /Components/Pages/ActivityFeed.razor.rz.scp.css */
.activity-feed[b-xsq553le7o] {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 1rem;
}

/* "Filter by member:" row above the kind pills. The picker itself (.activity-member-picker*) reuses
   the shared listbox styling in app.css that /my-teams and /vs also use. */
.activity-member-filter[b-xsq553le7o] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.activity-member-filter__label[b-xsq553le7o] {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--dfl-brand-dark, #0f3d6b);
}

.activity-day__label[b-xsq553le7o] {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--dfl-text-muted, #6b7280);
    margin-bottom: 0.4rem;
}

.activity-row[b-xsq553le7o] {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    padding: 0.55rem 0.75rem;
    border-radius: 0.5rem;
    background: var(--dfl-surface, #fff);
    border: 1px solid var(--dfl-border, #e5e7eb);
}

.activity-row + .activity-row[b-xsq553le7o] {
    margin-top: 0.4rem;
}

.activity-row__icon[b-xsq553le7o] {
    font-size: 1.1rem;
    line-height: 1.4;
}

.activity-row__body[b-xsq553le7o] {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 0;
    flex: 1 1 auto;
}

/* Commissioner-only delete affordance, right edge of the row. */
.activity-row__admin[b-xsq553le7o] {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.activity-row__admin-x[b-xsq553le7o] {
    background: none;
    border: none;
    color: var(--dfl-text-muted, #9aa4b2);
    font-size: 0.85rem;
    line-height: 1;
    padding: 0.25rem 0.35rem;
    border-radius: 0.3rem;
    cursor: pointer;
}

.activity-row__admin-x:hover[b-xsq553le7o] {
    color: var(--dfl-danger, #b91c1c);
    background: var(--dfl-danger-bg, #fee2e2);
}

.activity-row__admin-confirm[b-xsq553le7o],
.activity-row__admin-cancel[b-xsq553le7o] {
    font-size: 0.72rem;
    line-height: 1;
    padding: 0.25rem 0.5rem;
    border-radius: 0.3rem;
    border: 1px solid var(--dfl-border, #e5e7eb);
    cursor: pointer;
}

.activity-row__admin-confirm[b-xsq553le7o] {
    border-color: var(--dfl-danger, #b91c1c);
    color: var(--dfl-danger, #b91c1c);
    background: var(--dfl-danger-bg, #fee2e2);
}

.activity-row__admin-cancel[b-xsq553le7o] {
    background: var(--dfl-surface, #fff);
    color: var(--dfl-text, #1f2937);
}

.activity-row__headline[b-xsq553le7o] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.92rem;
    font-weight: 600;
}

/* Team / sport events: headline in the sport's accent colour (--sport-accent set inline). Colour
   the whole headline row — the ActivityActorBadge image is unaffected, the text span inherits. */
.activity-row__headline.is-sport[b-xsq553le7o] {
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

.activity-row__meta[b-xsq553le7o] {
    display: flex;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--dfl-text-muted, #6b7280);
}

.activity-row__reactions[b-xsq553le7o] {
    position: relative; /* positioning context for .activity-reaction-menu */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.4rem;
}

.activity-reaction[b-xsq553le7o] {
    font-size: 0.75rem;
    line-height: 1;
    padding: 0.2rem 0.45rem;
    border-radius: 999px;
    border: 1px solid var(--dfl-border, #e5e7eb);
    background: var(--dfl-surface, #fff);
    color: var(--dfl-text, #1a202c);
    cursor: pointer;
}

/* Hover tooltip listing who reacted — mirrors the league chat's .dfl-chat__reaction-tooltip.
   Opens BELOW the pill (not above like chat) so it never clips off the top of the feed. */
.activity-reaction-wrap[b-xsq553le7o] {
    position: relative;
    display: inline-flex;
}

.activity-reaction-tooltip[b-xsq553le7o] {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.4rem 0.55rem;
    background: #1e293b;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(var(--dfl-shadow-rgb, 0, 0, 0), 0.25);
    z-index: 100;
    min-width: max-content;
    pointer-events: none;
}

.activity-reaction-wrap:hover .activity-reaction-tooltip[b-xsq553le7o] {
    display: flex;
}

.activity-reaction-tooltip__user[b-xsq553le7o] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
}

.activity-reaction--mine[b-xsq553le7o] {
    border-color: var(--dfl-brand, #1a5490);
    background: var(--dfl-surface-alt, #eef4f9);
}

/* Emoji-reaction add button — mirrors the league chat's .dfl-chat__reaction-add (dashed circle,
   shows a 🙂 that flips to ✕ while the picker is open). */
.activity-reaction-add[b-xsq553le7o] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 999px;
    background: none;
    border: 1px dashed var(--dfl-border-strong, #cbd5e1);
    font-size: 0.8rem;
    line-height: 1;
    cursor: pointer;
}

.activity-reaction-add:hover[b-xsq553le7o] {
    background: var(--dfl-surface-alt, #f0f4f8);
    border-style: solid;
}

.activity-reaction-picker[b-xsq553le7o] {
    display: inline-flex;
}

/* Same shape as the chat's .dfl-chat__picker — the reaction emoji set is now the full shared list
   (LeagueReactionEmojis), so this wraps and scrolls instead of being one short row. Anchored to the
   whole reactions row (position:relative above), not the ＋ button, so it spans the content column
   and can't clip the viewport regardless of where the button wrapped to. */
.activity-reaction-menu[b-xsq553le7o] {
    position: absolute;
    bottom: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    padding: 0.3rem;
    max-width: 260px;
    max-height: 150px;
    overflow-y: auto;
    background: var(--dfl-surface, #fff);
    border: 1px solid var(--dfl-border, #e5e7eb);
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    z-index: 30;
}

.activity-reaction-menu button[b-xsq553le7o] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.15rem;
    line-height: 1;
    padding: 0.15rem 0.2rem;
    border-radius: 0.25rem;
}

.activity-reaction-menu button:hover[b-xsq553le7o] {
    background: var(--dfl-surface-hover, #f8fafc);
}

/* ── Comment threads ─────────────────────────────────────────────────────────────── */

/* Speech-bubble comment count — rounded pill with one squared corner as the "tail". Empty
   when there are no comments yet (click to start a thread); shows the count otherwise. */
.comment-bubble[b-xsq553le7o] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.35rem;
    border: 1px solid var(--dfl-border-strong, #cbd5e1);
    border-radius: 999px 999px 999px 3px;
    background: var(--dfl-surface, #fff);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dfl-text-muted, #6b7280);
    cursor: pointer;
}

.comment-bubble:hover[b-xsq553le7o] {
    background: var(--dfl-surface-alt, #f0f4f8);
}

.comment-bubble--active[b-xsq553le7o] {
    border-color: var(--dfl-brand, #1a5490);
    background: var(--dfl-surface-alt, #eef4f9);
    color: var(--dfl-brand, #1a5490);
}

.activity-comments[b-xsq553le7o] {
    --comment-indent: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.55rem;
    padding-top: 0.55rem;
    border-top: 1px dashed var(--dfl-border, #e5e7eb);
}

.activity-comments__loading[b-xsq553le7o] {
    font-size: 0.78rem;
    color: var(--dfl-text-muted, #6b7280);
}

.activity-comment[b-xsq553le7o] {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.35rem 0.5rem;
    border-radius: 0.4rem;
    background: var(--dfl-surface-alt, #f8fafc);
    border: 1px solid var(--dfl-border, #e5e7eb);
}

.activity-comment__head[b-xsq553le7o] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
}

.activity-comment__author[b-xsq553le7o] {
    font-weight: 600;
}

.activity-comment__time[b-xsq553le7o] {
    color: var(--dfl-text-muted, #6b7280);
    font-size: 0.7rem;
}

.activity-comment__delete[b-xsq553le7o] {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--dfl-text-muted, #9aa4b2);
    font-size: 0.78rem;
    line-height: 1;
    padding: 0.15rem 0.3rem;
    border-radius: 0.3rem;
    cursor: pointer;
}

.activity-comment__delete:hover[b-xsq553le7o] {
    color: var(--dfl-danger, #b91c1c);
    background: var(--dfl-danger-bg, #fee2e2);
}

.activity-comment__body[b-xsq553le7o] {
    font-size: 0.85rem;
    line-height: 1.4;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
}

.activity-comment__body--deleted[b-xsq553le7o] {
    font-style: italic;
    color: var(--dfl-text-muted, #6b7280);
}

.activity-comment__actions[b-xsq553le7o] {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem;
    margin-top: 0.15rem;
}

.activity-comment__reply-btn[b-xsq553le7o],
.activity-comment__collapse[b-xsq553le7o] {
    background: none;
    border: none;
    color: var(--dfl-brand, #1a5490);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.2rem 0.35rem;
    border-radius: 0.3rem;
    cursor: pointer;
}

.activity-comment__reply-btn:hover[b-xsq553le7o],
.activity-comment__collapse:hover[b-xsq553le7o] {
    background: var(--dfl-surface-hover, #eef4f9);
}

/* The replies toggle sits first in the actions row and reads as a lighter, structural control. */
.activity-comment__collapse[b-xsq553le7o] {
    order: -1;
    color: var(--dfl-text-muted, #6b7280);
    font-weight: 700;
}

.activity-comment__composer[b-xsq553le7o] {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.activity-comment__composer textarea[b-xsq553le7o] {
    width: 100%;
    resize: vertical;
    font: inherit;
}

.activity-comment__composer--root[b-xsq553le7o] {
    padding-top: 0.4rem;
    border-top: 1px solid var(--dfl-border, #e5e7eb);
}

/* Collapsed state of the top-level composer: a plain link until the viewer clicks to add a comment. */
.activity-comment__add-comment[b-xsq553le7o] {
    padding-left: 0;
}

.activity-comment__composer-actions[b-xsq553le7o] {
    display: flex;
    gap: 0.4rem;
}
/* /Components/Pages/Briefing.razor.rz.scp.css */
.briefing-digest h2[b-s6eywh2cz0] {
    margin: 0 0 0.6rem;
}

.briefing-digest__stats[b-s6eywh2cz0] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.briefing-digest__events[b-s6eywh2cz0] {
    list-style: none;
    padding: 0;
    margin: 0 0 0.6rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.briefing-digest__events li[b-s6eywh2cz0] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Team / sport events: headline in the sport's accent colour (--sport-accent set inline) — the
   ActivityActorBadge image is unaffected, the text span inherits. Matches ActivityFeed / Home. */
.briefing-digest__events li.is-sport[b-s6eywh2cz0] {
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

.briefing-digest__events .score-inactive[b-s6eywh2cz0] {
    font-weight: 400;
    flex-shrink: 0;
}

.briefing-digest__games[b-s6eywh2cz0] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    align-items: center;
    font-size: 0.85rem;
}

.briefing-digest__games-label[b-s6eywh2cz0] {
    font-weight: 600;
    color: var(--dfl-text-muted, #6b7280);
}

.briefing-digest__game[b-s6eywh2cz0] {
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    background: var(--dfl-surface-alt, #eef4f9);
}
/* /Components/Pages/HeadToHead.razor.rz.scp.css */
.h2h__heads[b-dh2osr69hu] {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.h2h__head[b-dh2osr69hu] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.h2h__name[b-dh2osr69hu] {
    font-weight: 700;
}

.h2h__leads[b-dh2osr69hu] {
    font-size: 0.75rem;
    color: var(--dfl-text-muted, #6b7280);
}

.h2h__vs[b-dh2osr69hu] {
    font-weight: 700;
    color: var(--dfl-text-muted, #6b7280);
}

/* On wide screens the shared `table.dfl-table { width: 100% }` stretches these few-column tables
   edge-to-edge, leaving big empty gaps between columns. Cap each result card to the width its
   content actually needs and let the columns size to content. .dfl-table-wrap's overflow-x:auto
   still handles narrow viewports. */
.dfl-card.h2h-narrow[b-dh2osr69hu] {
    width: fit-content;
    max-width: 100%;
}

/* Because each card is only as wide as its content, lay them out in a wrapping flex row so the
   comparison / schedule / side-bet cards sit side by side when the viewport has room, and stack
   only when they genuinely don't fit. */
.h2h-results[b-dh2osr69hu] {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem;
}

.h2h-results > .dfl-card[b-dh2osr69hu] {
    flex: 0 0 auto;
    margin-bottom: 0;
}

.h2h__table[b-dh2osr69hu] {
    width: auto;
    min-width: 20rem;
}

table.h2h__sched-table[b-dh2osr69hu] {
    width: auto;
}

.h2h__table th[b-dh2osr69hu],
.h2h__table td[b-dh2osr69hu] {
    text-align: center;
}

.h2h__table-mid[b-dh2osr69hu] {
    color: var(--dfl-text-muted, #6b7280);
    font-weight: 600;
}

.h2h__total td[b-dh2osr69hu] {
    border-top: 2px solid var(--dfl-border-strong, #cbd5e1);
}

.h2h__bets[b-dh2osr69hu] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    font-size: 0.88rem;
}

/* Home-team marker in the H2H schedule: a small 🏠 trailing the home team's name. Only the home
   side gets one, so the away cell is marginally narrower — the deliberate, minimal cost of keeping
   it inline. Mirrors the 🏠/✈️ venue convention from the UEFACL draw cards. */
.h2h__venue[b-dh2osr69hu] {
    font-size: 0.75rem;
    line-height: 1;
    opacity: 0.8;
    flex-shrink: 0;
}

/* The leading side of each sport row, and the winning team of each scheduled game, are already
   green (.score-positive) — bold them here too so the win reads at a glance. Scoped to this
   component so it doesn't bold every .score-positive site-wide. */
td.score-positive[b-dh2osr69hu] {
    font-weight: 700;
}
/* /Components/Pages/Home.razor.rz.scp.css */
.home-situation[b-aqffkrkkx1] {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 0.35rem 0.85rem;
    font-size: 0.9rem;
}

.home-situation__lead[b-aqffkrkkx1] {
    color: var(--dfl-text-muted, #6b7280);
}

.home-situation__rank[b-aqffkrkkx1] {
    font-size: 1.35rem;
    font-weight: 700;
}


.home-situation__delta[b-aqffkrkkx1] {
    font-weight: 600;
}

.home-activity-card__header[b-aqffkrkkx1] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.home-activity-card__header h2[b-aqffkrkkx1] {
    margin: 0;
}

/* One column on phones/tablets; a Today | Yesterday pair from 1000px up, and a third day from 1500px
   up. The single full-width column becomes an awkward left-to-right scan to reach each row's 🙂/💬
   cluster on a wide desktop — the split halves (or thirds) that reach. Below 1000px, OR when there's
   no prior day (no --split class), only the first column renders and its label is hidden, so the card
   looks exactly as it did before this existed. Home.razor always renders up to 3 day columns; the
   nth-child rules below are what actually gate how many are visible. */
.home-activity-card__cols[b-aqffkrkkx1] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.home-activity-card__col[b-aqffkrkkx1] {
    min-width: 0;
}

.home-activity-card__col-label[b-aqffkrkkx1] {
    display: none;
}

/* --split means at least a 2nd day of activity exists. Hide every column past the first until a
   breakpoint below re-shows it. */
.home-activity-card__cols--split .home-activity-card__col:nth-child(n + 2)[b-aqffkrkkx1] {
    display: none;
}

@media (min-width: 1000px) {
    .home-activity-card__cols--split[b-aqffkrkkx1] {
        flex-direction: row;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .home-activity-card__cols--split .home-activity-card__col[b-aqffkrkkx1] {
        flex: 1 1 0;
    }

    .home-activity-card__cols--split .home-activity-card__col:nth-child(2)[b-aqffkrkkx1] {
        display: block;
    }

    .home-activity-card__cols--split .home-activity-card__col-label[b-aqffkrkkx1] {
        display: block;
        margin: 0 0 0.4rem;
        font-size: 0.72rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.04em;
        color: var(--dfl-text-muted, #6b7280);
    }
}

@media (min-width: 1500px) {
    .home-activity-card__cols--split .home-activity-card__col:nth-child(3)[b-aqffkrkkx1] {
        display: block;
    }
}

.home-activity-card__list[b-aqffkrkkx1] {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.home-activity-card__list li[b-aqffkrkkx1] {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Headline fills the remaining width and WRAPS to more lines when it's long — the reaction cluster
   (🙂 + 💬) stays pinned top-right on the first line rather than being pushed down to a second row.
   flex-basis MUST be 0 (not auto): in a flex-wrap container an `auto` basis makes line-breaking use
   the text's full width, which is exactly what shoved the buttons onto line 2. */
.home-activity-card__headline[b-aqffkrkkx1] {
    flex: 1 1 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

/* The row: [chips column] [🙂 selector] [💬 bubble]. Chips live in their own vertical stack so the
   first reaction stays beside the selector and a 2nd/3rd reaction drops below it instead of
   pushing the buttons sideways. align-items:flex-start keeps 🙂/💬 level with the first chip. */
.home-activity-card__reactions[b-aqffkrkkx1] {
    flex: 0 0 auto;
    margin-left: auto;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.2rem;
}

.home-activity-card__chips[b-aqffkrkkx1] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
}

/* Compact copies of ActivityFeed.razor.css's reaction pills (its rules are component-scoped, so
   they don't reach here) — smaller, tuned for this one-line card. */
.home-activity-card__reactions .activity-reaction[b-aqffkrkkx1] {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1;
    padding: 0.12rem 0.35rem;
    border-radius: 999px;
    border: 1px solid var(--dfl-border, #e5e7eb);
    background: var(--dfl-surface, #fff);
    color: var(--dfl-text, #1a202c);
    cursor: pointer;
}

.home-activity-card__reactions .activity-reaction--mine[b-aqffkrkkx1] {
    border-color: var(--dfl-brand, #1a5490);
    background: var(--dfl-surface-alt, #eef4f9);
}

/* Hover tooltip listing who reacted — mirrors ActivityFeed.razor.css's, but right-anchored (the
   reaction cluster hugs the row's right edge) and opening downward so it can't clip off the top. */
.home-activity-card__reactions .activity-reaction-wrap[b-aqffkrkkx1] {
    position: relative;
    display: inline-flex;
}

.home-activity-card__reactions .activity-reaction-tooltip[b-aqffkrkkx1] {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.4rem 0.55rem;
    background: #1e293b;
    color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(var(--dfl-shadow-rgb, 0, 0, 0), 0.25);
    z-index: 100;
    min-width: max-content;
    pointer-events: none;
}

.home-activity-card__reactions .activity-reaction-wrap:hover .activity-reaction-tooltip[b-aqffkrkkx1] {
    display: flex;
}

.home-activity-card__reactions .activity-reaction-tooltip__user[b-aqffkrkkx1] {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    font-weight: 500;
    white-space: nowrap;
    color: #fff;
}

/* Emoji-reaction add button — compact copy of ActivityFeed.razor.css's .activity-reaction-add
   (dashed circle, 🙂 that flips to ✕ while open), matching the league chat's button. */
.home-activity-card__reactions .activity-reaction-add[b-aqffkrkkx1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 999px;
    background: none;
    border: 1px dashed var(--dfl-border-strong, #cbd5e1);
    font-size: 0.72rem;
    line-height: 1;
    cursor: pointer;
}

.home-activity-card__reactions .activity-reaction-add:hover[b-aqffkrkkx1] {
    background: var(--dfl-surface-alt, #f0f4f8);
    border-style: solid;
}

.home-activity-card__reactions .activity-reaction-picker[b-aqffkrkkx1] {
    display: inline-flex;
}

/* Speech-bubble comment count — compact copy of ActivityFeed.razor.css's .comment-bubble. */
.home-activity-card__reactions .comment-bubble[b-aqffkrkkx1] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.3rem;
    height: 1.3rem;
    padding: 0 0.3rem;
    border: 1px solid var(--dfl-border-strong, #cbd5e1);
    border-radius: 999px 999px 999px 3px;
    background: var(--dfl-surface, #fff);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    color: var(--dfl-text-muted, #6b7280);
    cursor: pointer;
}

.home-activity-card__reactions .comment-bubble:hover[b-aqffkrkkx1] {
    background: var(--dfl-surface-alt, #f0f4f8);
}

.home-activity-card__reactions .comment-bubble--active[b-aqffkrkkx1] {
    border-color: var(--dfl-brand, #1a5490);
    background: var(--dfl-surface-alt, #eef4f9);
    color: var(--dfl-brand, #1a5490);
}

.home-activity-card__reactions .activity-reaction-menu[b-aqffkrkkx1] {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    z-index: 30;
    display: flex;
    flex-wrap: wrap;
    gap: 0.1rem;
    padding: 0.3rem;
    width: max-content;
    max-width: 240px;
    max-height: 150px;
    overflow-y: auto;
    background: var(--dfl-surface, #fff);
    border: 1px solid var(--dfl-border, #e5e7eb);
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.home-activity-card__reactions .activity-reaction-menu button[b-aqffkrkkx1] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    padding: 0.15rem 0.2rem;
    border-radius: 0.25rem;
}

.home-activity-card__reactions .activity-reaction-menu button:hover[b-aqffkrkkx1] {
    background: var(--dfl-surface-hover, #f8fafc);
}

/* Team / sport events: headline in the sport's accent colour (--sport-accent set inline). Colour
   the whole row — the ActivityActorBadge image is unaffected, the text span inherits. */
.home-activity-card__list li.is-sport[b-aqffkrkkx1] {
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

/* Keep the reaction pill text at the normal colour on sport-tinted rows. */
.home-activity-card__list li.is-sport .activity-reaction[b-aqffkrkkx1] {
    color: var(--dfl-text, #1a202c);
}

/* Compact single-line comment composer — drops to its own full-width row under the headline.
   The thread itself is never rendered here (it's on /activity); this only posts a top-level
   comment and bumps the 💬 count. */
.home-activity-card__composer[b-aqffkrkkx1] {
    flex: 1 0 100%;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 400;
}

.home-activity-card__composer .dfl-input[b-aqffkrkkx1] {
    flex: 1 1 auto;
    min-width: 0;
    font: inherit;
}

.home-activity-card__composer .sport-link[b-aqffkrkkx1] {
    flex: 0 0 auto;
    white-space: nowrap;
}
/* /Components/Pages/Records.razor.rz.scp.css */
.records-titles[b-nw1o8uz3sl] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.records-champs[b-nw1o8uz3sl] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
    gap: 1rem;
}

.records-champ__sport[b-nw1o8uz3sl] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

/* Team logo + name, sport-accent coloured (--sport-accent comes from the row / card inline style).
   Matches the logo-left-of-name + sport-colour treatment used elsewhere on the site. */
.records-team[b-nw1o8uz3sl],
.records-champ__team[b-nw1o8uz3sl] {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 700;
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

.records-sport[b-nw1o8uz3sl] {
    font-weight: 700;
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

.records-champ ul[b-nw1o8uz3sl] {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.88rem;
}

/* Year + team on one baseline-centred row so the year lines up with the (taller) logo + name. */
.records-champ li[b-nw1o8uz3sl] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.records-champ__year[b-nw1o8uz3sl] {
    font-weight: 700;
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}

/* Best Team Seasons: whole data row bold + sport-accent coloured (--sport-accent from the <tr>). */
.records-team-row td[b-nw1o8uz3sl] {
    font-weight: 700;
    color: color-mix(in srgb, white var(--dfl-accent-text-mix, 0%), var(--sport-accent, var(--dfl-brand-dark, #0f3d6b)));
}
/* /Components/Pages/Scenarios.razor.rz.scp.css */
/* Wider grid tracks than the shared .dfl-form-grid default (minmax(10rem, ...)) so the Outcome
   <select>'s longest option, "Wins the championship", isn't clipped by the native dropdown arrow.
   Scoped selector (.dfl-form-grid[b-*]) outranks app.css's bare .dfl-form-grid. */
.dfl-form-grid[b-3183yv3x7g] {
    grid-template-columns: repeat(auto-fill, minmax(13.5rem, 1fr));
}

.scenario-chips[b-3183yv3x7g] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin: 0.85rem 0 0;
}

.scenario-chip[b-3183yv3x7g] {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    padding: 0.2rem 0.4rem 0.2rem 0.5rem;
    border-radius: 999px;
    background: var(--dfl-surface-alt, #eef4f9);
    border: 1px solid var(--dfl-border, #e5e7eb);
}

.scenario-chip__logo[b-3183yv3x7g] {
    display: inline-flex;
    align-items: center;
}

.scenario-chip__logo[b-3183yv3x7g]  .team-logo {
    width: 16px;
    height: 16px;
}

/* Custom team listbox (native <option> can't show an image). */
.scenario-team-picker[b-3183yv3x7g] {
    position: relative;
}

.scenario-team-picker__toggle[b-3183yv3x7g] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 100%;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-weight: 400;
    color: var(--dfl-text, #1a202c);
    background: var(--dfl-surface, #fff);
}

.scenario-team-picker__label[b-3183yv3x7g] {
    flex: 1;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.scenario-team-picker__sport[b-3183yv3x7g] {
    color: var(--dfl-text-muted, #6b7280);
    font-size: 0.82rem;
}

.scenario-team-picker__caret[b-3183yv3x7g] {
    margin-left: auto;
    color: var(--dfl-text-muted, #6b7280);
    font-size: 0.7rem;
}

.scenario-team-picker__menu[b-3183yv3x7g] {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    z-index: 40;
    max-height: 16rem;
    overflow-y: auto;
    padding: 0.25rem;
    background: var(--dfl-surface, #fff);
    border: 1px solid var(--dfl-border, #d1d9e0);
    border-radius: 4px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.scenario-team-picker__option[b-3183yv3x7g] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.35rem 0.5rem;
    border: none;
    border-radius: 3px;
    background: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 0.9rem;
    color: var(--dfl-text, #1a202c);
}

.scenario-team-picker__option:hover[b-3183yv3x7g] {
    background: var(--dfl-surface-alt, #eef4f9);
}

.scenario-team-picker__option.is-selected[b-3183yv3x7g] {
    background: var(--dfl-surface-alt, #eef4f9);
    font-weight: 600;
}

.scenario-team-picker[b-3183yv3x7g]  .team-logo {
    width: 20px;
    height: 20px;
}

.scenario-backdrop[b-3183yv3x7g] {
    position: fixed;
    inset: 0;
    z-index: 35;
    background: transparent;
}

.scenario-chip button[b-3183yv3x7g] {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 1;
    color: var(--dfl-text-muted, #6b7280);
    padding: 0.1rem;
}

.scenario-chip button:hover[b-3183yv3x7g] {
    color: var(--dfl-text, #16202e);
}

.scenario-run[b-3183yv3x7g] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
}
/* /Components/Pages/TeamDetail.razor.rz.scp.css */
/* TeamLogo.razor's <img> is fixed at 28px (see its own comment) — this page's hero logo is the one
   place that needs it bigger, so scale it up here via ::deep rather than adding a Size param that
   every other TeamLogo callsite would have to ignore. */
.team-detail-hero[b-ka7fikxove]  .team-logo {
    width: 4rem;
    height: 4rem;
}

.team-detail-owner[b-ka7fikxove] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* "← Back to {sport}" and the optional "Go to ESPN →" link sit on one line, ESPN to the right. */
.team-detail-hero-links[b-ka7fikxove] {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 1rem;
}

.team-detail-standings-context[b-ka7fikxove] {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.75rem;
}

.team-detail-standings-context__group[b-ka7fikxove] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.team-detail-standings-context__title[b-ka7fikxove] {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--dfl-text-muted, #64748b);
}
/* /Components/Shared/ActivityActorBadge.razor.rz.scp.css */
/* TeamLogo hard-codes width/height="28"; scale its <img>s down to the Size the call site asked for
   so a team-event row lines up with the member-avatar rows next to it. */
.activity-actor-badge[b-7mbjj979cs] {
    display: inline-flex;
    flex: 0 0 auto;
    line-height: 0;
}

.activity-actor-badge[b-7mbjj979cs]  .team-logo {
    width: var(--activity-actor-size, 22px);
    height: var(--activity-actor-size, 22px);
}
/* /Components/Shared/ActivityPushPrompt.razor.rz.scp.css */
/* Non-blocking banner. Only ever renders inside the installed mobile PWA (see the .razor header).
   Bottom-LEFT so it never collides with the bottom-right chat FAB (.dfl-chat, z-index 1200); theme
   tokens (--dfl-*) come from app.css and flip automatically in dark mode. */
.activity-push-prompt[b-7yl13sm4lb] {
    position: fixed;
    left: 0.75rem;
    bottom: 0.75rem;
    max-width: 34rem;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.9rem;
    background: var(--dfl-surface);
    border: 1px solid var(--dfl-border-strong);
    border-radius: 0.6rem;
    box-shadow: 0 6px 24px rgba(var(--dfl-shadow-rgb), 0.28);
    color: var(--dfl-text);
    font-size: 0.9rem;
    line-height: 1.35;
}

.activity-push-prompt__body[b-7yl13sm4lb] {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex: 1 1 auto;
    min-width: 0;
}

.activity-push-prompt__icon[b-7yl13sm4lb] {
    font-size: 1.15rem;
    flex: 0 0 auto;
}

.activity-push-prompt__actions[b-7yl13sm4lb] {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex: 0 0 auto;
}

.activity-push-prompt__dismiss[b-7yl13sm4lb] {
    background: none;
    border: none;
    color: var(--dfl-text-muted);
    font-size: 1rem;
    line-height: 1;
    padding: 0.35rem 0.4rem;
    cursor: pointer;
    border-radius: 0.35rem;
}

.activity-push-prompt__dismiss:hover[b-7yl13sm4lb] {
    background: var(--dfl-surface-hover);
    color: var(--dfl-text);
}

/* On a phone: full width, stacked, and lifted clear of the chat FAB that sits bottom-right. */
@media (max-width: 640px) {
    .activity-push-prompt[b-7yl13sm4lb] {
        right: 0.75rem;
        bottom: 5rem;
        max-width: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
    }

    .activity-push-prompt__actions[b-7yl13sm4lb] {
        justify-content: space-between;
    }

    .activity-push-prompt__actions .draft-pick-btn[b-7yl13sm4lb] {
        flex: 1 1 auto;
    }
}
/* /Components/Shared/DraftReportCard.razor.rz.scp.css */
.draft-report-card h2[b-kzn0lt3q3d] {
    margin: 0 0 0.35rem;
}

.draft-report-card__grade[b-kzn0lt3q3d] {
    display: inline-block;
    min-width: 2rem;
    text-align: center;
    font-weight: 700;
    padding: 0.1rem 0.4rem;
    border-radius: 0.35rem;
    background: var(--dfl-surface-alt, #eef4f9);
}
/* /Components/Shared/TeamName.razor.rz.scp.css */
.team-name-abbr[b-hxvzjw926u] {
    display: none;
}

/* ForceAbbreviated call sites render only this span (no .team-name-full sibling to fall back
   on), so it must stay visible above the breakpoint too — otherwise the base rule above hides
   it and the cell goes blank until the @media query below re-shows it. */
.team-name-abbr--forced[b-hxvzjw926u] {
    display: inline;
}

/* Same hamburger breakpoint as MainLayout.razor.css / HeaderNavPanel.razor.css / app.css
   (.scoreboard-sport-grid, .dfl-standings-hero__logo) — must stay 1900px if those ever change. */
@media (max-width: 1900px) {
    .team-name-full[b-hxvzjw926u] {
        display: none;
    }

    .team-name-abbr[b-hxvzjw926u] {
        display: inline;
    }
}
