﻿.link {
    color:blue;
    text-decoration: underline;
}
.nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 75px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
    display: flex;
    overflow-x: auto;
    align-items: stretch;   
}

.nav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    flex-grow: 1;
    min-width: 50px;
    overflow: hidden;
    white-space: nowrap;
    font-family: sans-serif;
    font-size: 13px;
    color: #444444;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
    transition: background-color 0.1s ease-in-out;
    padding-top: 5px;
}

    .nav__link:hover {
        background-color: #eeeeee;
    }

.active {
    color: var(--mud-palette-primary);
}

.nav__icon {
    font-size: 18px;
}

.loading-progress-element {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 4vh auto 1rem auto;
}

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #F45F02;
            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(0vh + 3.3rem) 0 auto 0.2rem;
    font-family: 'Roboto','Helvetica','Arial','sans-serif'
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }