/* /Components/Layout/ReconnectModal.razor.rz.scp.css */
.components-reconnect-first-attempt-visible[b-l3hll1e25h],
.components-reconnect-repeated-attempt-visible[b-l3hll1e25h],
.components-reconnect-failed-visible[b-l3hll1e25h],
.components-pause-visible[b-l3hll1e25h],
.components-resume-failed-visible[b-l3hll1e25h],
.components-rejoining-animation[b-l3hll1e25h] {
    display: none;
}

#components-reconnect-modal.components-reconnect-show .components-reconnect-first-attempt-visible[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-show .components-rejoining-animation[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-paused .components-pause-visible[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-resume-failed .components-resume-failed-visible[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-retrying[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-retrying .components-reconnect-repeated-attempt-visible[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-retrying .components-rejoining-animation[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-failed[b-l3hll1e25h],
#components-reconnect-modal.components-reconnect-failed .components-reconnect-failed-visible[b-l3hll1e25h] {
    display: block;
}


#components-reconnect-modal[b-l3hll1e25h] {
    background-color: white;
    width: 20rem;
    margin: 20vh auto;
    padding: 2rem;
    border: 0;
    border-radius: 0.5rem;
    box-shadow: 0 3px 6px 2px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: display 0.5s allow-discrete, overlay 0.5s allow-discrete;
    animation: components-reconnect-modal-fadeOutOpacity-b-l3hll1e25h 0.5s both;
    &[open]

{
    animation: components-reconnect-modal-slideUp-b-l3hll1e25h 1.5s cubic-bezier(.05, .89, .25, 1.02) 0.3s, components-reconnect-modal-fadeInOpacity-b-l3hll1e25h 0.5s ease-in-out 0.3s;
    animation-fill-mode: both;
}

}

#components-reconnect-modal[b-l3hll1e25h]::backdrop {
    background-color: rgba(0, 0, 0, 0.4);
    animation: components-reconnect-modal-fadeInOpacity-b-l3hll1e25h 0.5s ease-in-out;
    opacity: 1;
}

@keyframes components-reconnect-modal-slideUp-b-l3hll1e25h {
    0% {
        transform: translateY(30px) scale(0.95);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes components-reconnect-modal-fadeInOpacity-b-l3hll1e25h {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes components-reconnect-modal-fadeOutOpacity-b-l3hll1e25h {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

.components-reconnect-container[b-l3hll1e25h] {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

#components-reconnect-modal p[b-l3hll1e25h] {
    margin: 0;
    text-align: center;
}

#components-reconnect-modal button[b-l3hll1e25h] {
    border: 0;
    background-color: #6b9ed2;
    color: white;
    padding: 4px 24px;
    border-radius: 4px;
}

    #components-reconnect-modal button:hover[b-l3hll1e25h] {
        background-color: #3b6ea2;
    }

    #components-reconnect-modal button:active[b-l3hll1e25h] {
        background-color: #6b9ed2;
    }

.components-rejoining-animation[b-l3hll1e25h] {
    position: relative;
    width: 80px;
    height: 80px;
}

    .components-rejoining-animation div[b-l3hll1e25h] {
        position: absolute;
        border: 3px solid #0087ff;
        opacity: 1;
        border-radius: 50%;
        animation: components-rejoining-animation-b-l3hll1e25h 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    }

        .components-rejoining-animation div:nth-child(2)[b-l3hll1e25h] {
            animation-delay: -0.5s;
        }

@keyframes components-rejoining-animation-b-l3hll1e25h {
    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/AcademicCalendar.razor.rz.scp.css */
.calendar-toolbar[b-3941iauc7y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.calendar-actions[b-3941iauc7y] {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.calendar-week[b-3941iauc7y] {
    display: grid;
    grid-template-columns: repeat(7, minmax(150px, 1fr));
    gap: 1px;
    overflow-x: auto;
    border: 1px solid var(--colorNeutralStroke2, #e0e0e0);
    border-radius: var(--borderRadiusXLarge, 8px);
    background: var(--colorNeutralStroke2, #e0e0e0);
}

.calendar-day[b-3941iauc7y] {
    min-width: 150px;
    min-height: 260px;
    background: var(--colorNeutralBackground1, #fff);
}

.calendar-day.is-today[b-3941iauc7y] {
    box-shadow: inset 0 3px 0 var(--colorBrandBackground, #0f6cbd);
}

.calendar-day-header[b-3941iauc7y] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 12px;
    border-bottom: 1px solid var(--colorNeutralStroke2, #e0e0e0);
    background: var(--colorNeutralBackground2, #f5f5f5);
}

.calendar-day.is-today .calendar-day-header[b-3941iauc7y] {
    color: var(--colorBrandForeground1, #0f6cbd);
    background: var(--colorBrandBackground2, #ebf3fc);
}

.calendar-day-body[b-3941iauc7y] {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 8px;
}

.calendar-session[b-3941iauc7y] {
    display: flex;
    flex-direction: column;
    gap: 3px;
    width: 100%;
    padding: 10px;
    border: 1px solid var(--colorNeutralStroke2, #e0e0e0);
    border-left: 4px solid var(--colorBrandBackground, #0f6cbd);
    border-radius: var(--borderRadiusMedium, 4px);
    color: var(--colorNeutralForeground1, #242424);
    background: var(--colorNeutralBackground1, #fff);
    text-align: left;
    cursor: pointer;
}

.calendar-session:hover:not(:disabled)[b-3941iauc7y] {
    background: var(--colorNeutralBackground2, #f5f5f5);
}

.calendar-session:disabled[b-3941iauc7y] {
    cursor: default;
    opacity: 1;
}

.calendar-session.is-completed[b-3941iauc7y] {
    border-left-color: var(--colorPaletteGreenBorderActive, #107c10);
}

.calendar-session.is-cancelled[b-3941iauc7y] {
    border-left-color: var(--colorPaletteRedBorderActive, #c50f1f);
    opacity: .72;
}

.calendar-session.is-rescheduled[b-3941iauc7y] {
    border-left-color: var(--colorPaletteMarigoldBorderActive, #d83b01);
}

.calendar-session-time[b-3941iauc7y] {
    color: var(--colorBrandForeground1, #0f6cbd);
    font-weight: 700;
}

.calendar-session span[b-3941iauc7y],
.calendar-session small[b-3941iauc7y] {
    line-height: 1.25;
}

.calendar-empty[b-3941iauc7y] {
    padding: 24px 8px;
    color: var(--colorNeutralForeground3, #616161);
    text-align: center;
}

@media (max-width: 900px) {
    .calendar-toolbar[b-3941iauc7y] {
        align-items: flex-start;
        flex-direction: column;
    }

    .calendar-week[b-3941iauc7y] {
        grid-template-columns: repeat(7, minmax(220px, 1fr));
    }
}
/* /Components/Pages/HelpCenter.razor.rz.scp.css */
:global(html)[b-1w9xvohlyj] {
    scroll-behavior: smooth;
    scroll-padding-top: 88px;
}

.help-hero[b-1w9xvohlyj] {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 32px;
    align-items: center;
    overflow: hidden;
    margin-bottom: 28px;
    padding: clamp(24px, 4vw, 44px);
    border-radius: 24px;
    color: var(--ga-cream);
    background:
        radial-gradient(circle at 92% 12%, rgba(191, 231, 216, 0.25), transparent 34%),
        linear-gradient(135deg, var(--ga-forest), #1d5955);
}

.help-hero[b-1w9xvohlyj]::after {
    content: "?";
    position: absolute;
    right: 24px;
    bottom: -62px;
    color: rgba(255, 255, 255, 0.045);
    font-family: Manrope, sans-serif;
    font-size: 220px;
    font-weight: 800;
    line-height: 1;
    pointer-events: none;
}

.help-hero__copy[b-1w9xvohlyj],
.help-hero__search[b-1w9xvohlyj] {
    position: relative;
    z-index: 1;
}

.help-hero__copy[b-1w9xvohlyj] {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    max-width: 620px;
}

.help-hero__search[b-1w9xvohlyj] {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 18px;
    color: var(--ga-ink);
    background: rgba(255, 254, 251, 0.97);
    box-shadow: 0 20px 50px rgba(6, 29, 28, 0.22);
}

.help-layout[b-1w9xvohlyj] {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.help-index[b-1w9xvohlyj] {
    position: sticky;
    top: 88px;
    max-height: calc(100vh - 104px);
    overflow: auto;
    padding: 18px;
    border: 1px solid var(--ga-line);
    border-radius: 18px;
    background: var(--ga-paper);
}

.help-index nav[b-1w9xvohlyj] {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 10px;
}

.help-index__link[b-1w9xvohlyj] {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 8px;
    align-items: center;
    min-height: 42px;
    padding: 8px 10px;
    border-radius: 12px;
    color: var(--ga-ink);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 160ms ease, color 160ms ease;
}

.help-index__link:hover[b-1w9xvohlyj],
.help-index__link:focus-visible[b-1w9xvohlyj] {
    color: var(--ga-teal);
    background: rgba(31, 118, 111, 0.09);
    outline: none;
}

.help-index__count[b-1w9xvohlyj] {
    display: inline-grid;
    min-width: 24px;
    min-height: 24px;
    place-items: center;
    border-radius: 999px;
    color: var(--ga-teal);
    background: rgba(31, 118, 111, 0.11);
    font-size: 0.75rem;
}

.help-content[b-1w9xvohlyj],
.help-section[b-1w9xvohlyj],
.help-guides[b-1w9xvohlyj] {
    min-width: 0;
}

.help-section[b-1w9xvohlyj] {
    margin-bottom: 48px;
}

.help-section__heading[b-1w9xvohlyj] {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 18px;
}

.help-section__icon[b-1w9xvohlyj] {
    display: inline-grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 15px;
    color: var(--ga-teal);
    background: var(--ga-mint);
}

.help-guides[b-1w9xvohlyj] {
    display: grid;
    gap: 24px;
}

.help-guide[b-1w9xvohlyj] {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(300px, 0.95fr);
    overflow: hidden;
    border: 1px solid var(--ga-line);
    border-radius: 20px;
    background: var(--ga-paper);
    box-shadow: 0 9px 30px rgba(20, 60, 58, 0.065);
}

.help-guide__image-wrap[b-1w9xvohlyj] {
    min-height: 310px;
    overflow: hidden;
    border-right: 1px solid var(--ga-line);
    background: #e8ece7;
}

.help-guide__image[b-1w9xvohlyj] {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 310px;
    object-fit: cover;
    object-position: top left;
    transition: transform 220ms ease;
}

.help-guide:hover .help-guide__image[b-1w9xvohlyj] {
    transform: scale(1.012);
}

.help-guide__body[b-1w9xvohlyj] {
    display: flex;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    padding: clamp(22px, 3vw, 34px);
}

.help-guide__title-row[b-1w9xvohlyj] {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    justify-content: space-between;
}

.help-guide__steps[b-1w9xvohlyj] {
    display: grid;
    gap: 8px;
    margin: 0;
    padding-left: 21px;
    color: var(--ga-ink);
}

.help-guide__steps li[b-1w9xvohlyj]::marker {
    color: var(--ga-coral);
}

.help-guide__tip[b-1w9xvohlyj] {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 13px;
    color: var(--ga-forest);
    background: rgba(247, 200, 91, 0.22);
    font-size: 0.9rem;
}

.help-back-link[b-1w9xvohlyj] {
    display: block;
    width: fit-content;
    margin: 14px 0 0 auto;
    color: var(--ga-teal);
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
}

.help-faq__list[b-1w9xvohlyj] {
    display: grid;
    gap: 10px;
}

.help-faq__item[b-1w9xvohlyj] {
    border: 1px solid var(--ga-line);
    border-radius: 16px;
    background: var(--ga-paper);
}

.help-faq__item summary[b-1w9xvohlyj] {
    padding: 18px 20px;
    color: var(--ga-forest);
    cursor: pointer;
    font-weight: 700;
}

.help-faq__item p[b-1w9xvohlyj] {
    margin: 0;
    padding: 0 20px 20px;
    color: var(--ga-muted);
}

@media (max-width: 1180px) {
    .help-layout[b-1w9xvohlyj] {
        grid-template-columns: 1fr;
    }

    .help-index[b-1w9xvohlyj] {
        position: sticky;
        z-index: 5;
        top: 70px;
        max-height: none;
        overflow-x: auto;
        padding: 10px;
    }

    .help-index > :first-child[b-1w9xvohlyj] {
        display: none;
    }

    .help-index nav[b-1w9xvohlyj] {
        flex-direction: row;
        width: max-content;
        margin: 0;
    }

    .help-index__link[b-1w9xvohlyj] {
        grid-template-columns: 20px auto auto;
        white-space: nowrap;
    }
}

@media (max-width: 900px) {
    .help-hero[b-1w9xvohlyj] {
        grid-template-columns: 1fr;
    }

    .help-guide[b-1w9xvohlyj] {
        grid-template-columns: 1fr;
    }

    .help-guide__image-wrap[b-1w9xvohlyj] {
        min-height: 0;
        border-right: 0;
        border-bottom: 1px solid var(--ga-line);
        aspect-ratio: 16 / 9;
    }

    .help-guide__image[b-1w9xvohlyj] {
        min-height: 0;
        aspect-ratio: 16 / 9;
    }
}

@media (max-width: 600px) {
    .help-hero[b-1w9xvohlyj] {
        gap: 22px;
        padding: 22px 18px;
        border-radius: 18px;
    }

    .help-hero__search[b-1w9xvohlyj] {
        padding: 14px;
    }

    .help-layout[b-1w9xvohlyj] {
        gap: 22px;
    }

    .help-index[b-1w9xvohlyj] {
        margin-inline: -8px;
        border-radius: 14px;
    }

    .help-section[b-1w9xvohlyj] {
        margin-bottom: 38px;
    }

    .help-guide__body[b-1w9xvohlyj] {
        padding: 20px 18px;
    }

    .help-guide__title-row[b-1w9xvohlyj] {
        flex-direction: column;
    }
}
/* /Components/Shared/StatCard.razor.rz.scp.css */
.stat-card__content[b-795oqp7ley] {
    min-width: 0;
}

.stat-card__heading[b-795oqp7ley] {
    align-items: flex-start;
    min-height: 44px;
}

.stat-card__label[b-795oqp7ley] {
    line-height: 1.35;
    min-width: 0;
}

.stat-card__icon[b-795oqp7ley] {
    flex: 0 0 auto;
    box-sizing: content-box;
    font-size: 1.75rem !important;
    height: 1.75rem;
    width: 1.75rem;
}

.stat-card__value[b-795oqp7ley] {
    overflow-wrap: anywhere;
}

.stat-card__footer[b-795oqp7ley] {
    margin-top: auto;
}

.stat-card-link[b-795oqp7ley] {
    color: var(--accent-fill-rest);
    font-size: var(--type-ramp-base-font-size);
    line-height: var(--type-ramp-base-line-height);
    text-decoration: none;
    width: fit-content;
}

.stat-card-link:hover[b-795oqp7ley] {
    text-decoration: underline;
}

.stat-card-link:focus-visible[b-795oqp7ley] {
    border-radius: 2px;
    outline: 2px solid var(--focus-stroke-outer);
    outline-offset: 2px;
}
