@import '_content/Microsoft.FluentUI.AspNetCore.Components/Microsoft.FluentUI.AspNetCore.Components.bundle.scp.css';

/* /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/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;
}

.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;
}
