/* /Components/Layout/MainLayout.razor.rz.scp.css */
/* The shell is a single column: header, page, footer. The sidebar the Blazor
   template starts with is gone — this site has a handful of pages, and a
   250-pixel rail spends a phone's whole width on navigation nobody is reading.

   The layout puts no padding on the page itself. Every screen wraps its own
   content in .page-section (see app.css), which is what lets the home page run
   its hero the full width of the window without fighting the shell. */

.page[b-52anl78o5l] {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    background: var(--surface);
}

main[b-52anl78o5l] {
    flex: 1;
}
/* /Components/Layout/SiteFooter.razor.rz.scp.css */
/* No margin above it: a page that ends in a full-width navy band should run
   straight into the footer, not leave a strip of white between two dark areas.
   Pages that end in ordinary content carry their own bottom padding instead. */
.site-footer[b-zwj0pac4g6] {
    padding-top: var(--space-7);
    background: var(--surface-brand-deep);
    color: rgb(255 255 255 / 72%);
    font-size: 0.9375rem;
}

.footer-inner[b-zwj0pac4g6] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-6);
    justify-content: space-between;
    padding-bottom: var(--space-6);
}

.footer-brand[b-zwj0pac4g6] {
    max-width: 26rem;
}

.brand[b-zwj0pac4g6] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: var(--space-3);
    color: #fff;
    text-decoration: none;
    --mark-crest: rgb(255 255 255 / 16%);
    --mark-figure: #fff;
}

.brand-name[b-zwj0pac4g6] {
    font-size: 1.1875rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

.footer-line[b-zwj0pac4g6] {
    margin: 0;
    line-height: 1.55;
}

.footer-nav[b-zwj0pac4g6] {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-nav a[b-zwj0pac4g6] {
    color: rgb(255 255 255 / 82%);
    text-decoration: none;
}

.footer-nav a:hover[b-zwj0pac4g6] {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.footer-legal[b-zwj0pac4g6] {
    padding-top: var(--space-4);
    padding-bottom: max(var(--space-4), env(safe-area-inset-bottom));
    border-top: 1px solid rgb(255 255 255 / 12%);
    color: rgb(255 255 255 / 52%);
    font-size: var(--text-sm);
}
/* /Components/Layout/SiteHeader.razor.rz.scp.css */
/* The header is navy in both colour schemes: it is the brand's own surface,
   not a page surface, so it does not invert when the rest of the page does. */

.site-header[b-28yoj0eayt] {
    position: sticky;
    top: 0;
    z-index: 30;
    background: var(--surface-brand);
    /* Runs under the status bar on a phone in standalone mode. */
    padding-top: env(safe-area-inset-top);
    color: #fff;
}

/* A hairline of the accent under the bar, rather than a shadow. It is the one
   place the orange appears at full width, and it ties the header to the mark. */
.site-header[b-28yoj0eayt]::after {
    content: '';
    display: block;
    height: 2px;
    background: var(--orange-500);
}

.header-inner[b-28yoj0eayt] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    min-height: 3.75rem;
}

/* ---------------------------------------------------------------- brand -- */

.brand[b-28yoj0eayt] {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-right: auto;
    color: #fff;
    text-decoration: none;
    /* The crest goes translucent on the navy bar; the figure and the check stay
       as they are. See SportDexMark. */
    --mark-crest: rgb(255 255 255 / 16%);
    --mark-figure: #fff;
}

.brand-name[b-28yoj0eayt] {
    font-size: 1.3125rem;
    font-weight: 700;
    letter-spacing: -0.025em;
}

/* ------------------------------------------------------------------ nav -- */

.site-nav[b-28yoj0eayt] {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.site-nav[b-28yoj0eayt]  .nav-link,
.site-nav .nav-link[b-28yoj0eayt] {
    padding: 0.375rem 0;
    color: rgb(255 255 255 / 78%);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav[b-28yoj0eayt]  .nav-link:hover,
.site-nav .nav-link:hover[b-28yoj0eayt] {
    color: #fff;
}

/* The accent marks where you are. That is information, so it earns the colour. */
.site-nav[b-28yoj0eayt]  .nav-link.active {
    color: #fff;
    border-bottom-color: var(--orange-500);
}

.nav-who[b-28yoj0eayt] {
    color: rgb(255 255 255 / 62%);
    font-size: 0.875rem;
    white-space: nowrap;
}

.nav-divider[b-28yoj0eayt] {
    width: 1px;
    height: 1.25rem;
    background: rgb(255 255 255 / 20%);
}

/* The sign-in button is outlined rather than filled. The orange belongs to the
   one thing we are asking for on the page underneath; a solid orange button up
   here would argue with it on every screen. */
.site-nav .btn-secondary[b-28yoj0eayt] {
    border-color: rgb(255 255 255 / 38%);
    color: #fff;
}

.site-nav .btn-secondary:hover[b-28yoj0eayt] {
    border-color: rgb(255 255 255 / 70%);
    background: rgb(255 255 255 / 10%);
}

/* --------------------------------------------------------- menu on small -- */

.nav-toggle[b-28yoj0eayt],
.nav-toggle-button[b-28yoj0eayt] {
    display: none;
}

@media (max-width: 63.99rem) {
    .nav-toggle-button[b-28yoj0eayt] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: var(--tap);
        height: var(--tap);
        margin-right: calc(var(--space-2) * -1);
        border-radius: var(--radius-control);
        cursor: pointer;
    }

    .nav-toggle-bars[b-28yoj0eayt],
    .nav-toggle-bars[b-28yoj0eayt]::before,
    .nav-toggle-bars[b-28yoj0eayt]::after {
        display: block;
        width: 1.25rem;
        height: 2px;
        border-radius: 1px;
        background: #fff;
    }

    .nav-toggle-bars[b-28yoj0eayt] {
        position: relative;
    }

    .nav-toggle-bars[b-28yoj0eayt]::before,
    .nav-toggle-bars[b-28yoj0eayt]::after {
        content: '';
        position: absolute;
        left: 0;
    }

    .nav-toggle-bars[b-28yoj0eayt]::before {
        top: -6px;
    }

    .nav-toggle-bars[b-28yoj0eayt]::after {
        top: 6px;
    }

    /* Focusable and visible when tabbed to, without showing the box itself. */
    .nav-toggle[b-28yoj0eayt] {
        position: absolute;
        width: var(--tap);
        height: var(--tap);
        margin: 0;
        opacity: 0;
        cursor: pointer;
    }

    .nav-toggle:focus-visible + .nav-toggle-button[b-28yoj0eayt] {
        outline: 2px solid #fff;
        outline-offset: 2px;
    }

    .site-nav[b-28yoj0eayt] {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: var(--space-2) var(--space-4) var(--space-4);
        background: var(--surface-brand);
        border-top: 1px solid rgb(255 255 255 / 12%);
        box-shadow: var(--shadow-pop);
    }

    .nav-toggle:checked ~ .site-nav[b-28yoj0eayt] {
        display: flex;
    }

    .site-nav[b-28yoj0eayt]  .nav-link,
    .site-nav .nav-link[b-28yoj0eayt] {
        display: flex;
        align-items: center;
        min-height: var(--tap);
        padding: 0;
        border-bottom: 0;
        border-left: 2px solid transparent;
        padding-left: var(--space-3);
        font-size: 1.0625rem;
    }

    .site-nav[b-28yoj0eayt]  .nav-link.active {
        border-left-color: var(--orange-500);
    }

    .nav-divider[b-28yoj0eayt] {
        width: auto;
        height: 1px;
        margin: var(--space-2) 0;
    }

    .nav-who[b-28yoj0eayt] {
        padding: var(--space-2) var(--space-3) 0;
    }

    .site-nav[b-28yoj0eayt]  .btn,
    .site-nav .btn[b-28yoj0eayt] {
        margin-top: var(--space-3);
        justify-content: center;
    }
}
/* /Components/Pages/Home.razor.rz.scp.css */
/* The agenda card in the hero.

   It is illustration, not data: the home page is the one screen a visitor sees
   before signing in, so there is no agenda to show them yet. It is marked
   aria-hidden because a screen reader reading out three invented events as if
   they were the reader's own would be worse than silence — the words beside it
   say what it is. */

.preview[b-50mons7voj] {
    border: 1px solid var(--line);
    border-radius: var(--radius-panel);
    background: var(--surface-raised);
    box-shadow: var(--shadow-card);
    overflow: hidden;
}

.preview-head[b-50mons7voj] {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--line);
}

.preview-team[b-50mons7voj] {
    font-size: var(--text-lg);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.preview-month[b-50mons7voj] {
    color: var(--ink-muted);
    font-size: var(--text-sm);
}

.preview-list[b-50mons7voj] {
    margin: 0;
    padding: 0;
    list-style: none;
}

.preview-list li[b-50mons7voj] {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: var(--space-1) var(--space-4);
    align-items: center;
    padding: var(--space-4) var(--space-5);
}

.preview-list li + li[b-50mons7voj] {
    border-top: 1px solid var(--line);
}

/* The next thing on the agenda is the reason the screen is open, so it is the
   one row that is marked. */
.preview-list li.is-next[b-50mons7voj] {
    border-left: 3px solid var(--orange-500);
    padding-left: calc(var(--space-5) - 3px);
    background: var(--orange-100);
}

.preview-when[b-50mons7voj] {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.preview-when strong[b-50mons7voj] {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--ink-muted);
    text-transform: lowercase;
}

.preview-when > span[b-50mons7voj] {
    font-size: var(--text-base);
    font-weight: 700;
    letter-spacing: -0.01em;
}

.preview-what[b-50mons7voj] {
    display: flex;
    flex-direction: column;
    min-width: 0;
    line-height: 1.35;
}

.preview-what strong[b-50mons7voj] {
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.preview-what .muted[b-50mons7voj] {
    font-size: var(--text-sm);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* The status sits under the event on a narrow card and moves to its own column
   once the row is wide enough to carry it. */
.preview-list .chip[b-50mons7voj] {
    grid-column: 2;
    justify-self: start;
}

@media (min-width: 26rem) {
    .preview-list li[b-50mons7voj] {
        grid-template-columns: 3rem minmax(0, 1fr) auto;
    }

    .preview-list .chip[b-50mons7voj] {
        grid-column: 3;
        justify-self: end;
    }
}
/* /Components/Pages/TeamDetail.razor.rz.scp.css */
/* The roles a member holds in this team.

   Each is a toggle that posts on its own, so the pressed state is the data
   rather than a style: aria-pressed is what a screen reader reads out and what
   the colour below is keyed to, which keeps the two from disagreeing. */

.role-toggles[b-33paa4ynt7] {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.role-toggle[b-33paa4ynt7] {
    min-height: 2.25rem;
    padding: 0.3125rem 0.75rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-pill);
    background: transparent;
    color: var(--ink-muted);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.role-toggle:hover[b-33paa4ynt7] {
    border-color: var(--ink-muted);
    color: var(--ink);
}

.role-toggle[aria-pressed='true'][b-33paa4ynt7] {
    border-color: var(--navy-700);
    background: var(--navy-700);
    color: #fff;
}

.role-toggle[aria-pressed='true']:hover[b-33paa4ynt7] {
    border-color: var(--navy-600);
    background: var(--navy-600);
}

@media (prefers-color-scheme: dark) {
    .role-toggle[aria-pressed='true'][b-33paa4ynt7] {
        border-color: var(--line-strong);
        background: var(--surface-raised);
        color: var(--ink);
    }
}
