﻿html, body, #app, div.mud-main-content {
    height: 100%;
    background-color: moccasin;
}

aside.mud-drawer {
    background-color: lemonchiffon;
}

header.mud-appbar {
    background-color: var(--mud-palette-primary-lighten);
}

div.mud-input.mud-input-outlined {
    background-color: white;
    border-radius: 4px;
}

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0;
    transform: scale(2);
}

.loader-sizer {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding-top: 70px;
    height: 200px;
}

.loader-wheel {
    animation: spin 1s infinite linear;
    border: 2px solid rgba(30, 30, 30, 0.5);
    border-left: 4px solid #fff;
    border-radius: 50%;
    height: 50px;
    margin-bottom: 10px;
    width: 50px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}