
.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: #1b6ec2;
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.15s 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...");
}

.linear-progress {
    background: silver;
    width: 50vw;
    margin: 20% auto;
    height: 1rem;
    border-radius: 10rem;
    overflow: hidden;
    position: relative;
}

.linear-progress:after {
    content: '';
    position: absolute;
    inset: 0;
    background: #1e88e5ff;
    scale: var(--blazor-load-percentage, 0%) 100%;
    transform-origin: left top;
    transition: scale ease-out 20.0s;
}

/*.loader {
    border: 4px solid #f3f3f3;*/ /* Heller Rand */
    /*border-top: 4px solid #ffffff;*/ /* Dunkler Rand */
    /*border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;*/
/*}*/

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.selected {
    background-color: #1E88E5 !important;
}

.selected > td {
    color: white !important;
}

.selected > td .mud-input {
    color: white !important;
}

.selected-table-row {
    background: #757575 !important;
}

.selected-table-row > td, .selected-table-row > td .mud-icon-button {
    color: white !important;
}

.w-fit-content {
  width: fit-content;
}

.item-form{
    margin: 10px 24px;
}

.mud-text-align-center {
  text-align: center;
}

.mud-typography-body1{
    width:100% !important;
}

.full-card{
    width:100%;
    height:100%;
}

#app {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 0;
}