html, body{
    height: 100%;
    font-family: "Public Sans", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.calendar-mobile {
    display: none;
}

.calendar-desktop {
    display: block;
}

@media (max-width: 960px) {
    .calendar-mobile {
        display: block;
    }

    .calendar-desktop {
        display: none;
    }
}

.mud-nav-link,
.mud-nav-link-text {
    font-weight: 600;
}

.loading-progress {
    position: absolute;
    display: block;
    width: 8rem;
    height: 8rem;
    inset: 20vh 0 auto 0;
    margin: 0 auto 0 auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }

@media (max-width: 599.98px) {
    .mud-calendar {
        overflow-x: auto;
    }

    .mud-cal-toolbar {
        flex-wrap: wrap;
        gap: 8px;
    }
}
