.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem 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: #da292d;
            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");
    }
red-text {
    color: red;
}

/*Override mudblazor css styles:*/
.mud-table-dense * .mud-table-row .mud-table-cell {
    padding: 6px 6px 6px 6px;
    padding-inline-start: 6px;
    padding-inline-end: 6px;
}

.mud-table-cell {
    font-size: .7rem;
    text-align: center;
}

.mud-table-head {
    background-color: #f4f5f9;
    border: 1px solid;
}

blockquote {
    margin: 1em 40px !important;
    padding-left: 1em !important;
    border-left: 4px solid #ccc !important; /* this creates the vertical line */
}

li {
    margin-left: 55px;
}