﻿html, body, .app {
    width: 100%;
    height: 100%;
    min-width: 20rem;
    margin: 0;
}

.clickable {
    cursor: pointer
}

#blazor-error-ui {
    width: 100%;
    height: 100%;
    background: #0008;
    display: none;
    position: fixed;
}

    #blazor-error-ui .message {
        width: 100%;
        height: 100%;
        color: white;
        align-content: center;
        text-align: center;
    }

.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.loader-animation {
    width: 8rem;
    padding: 0.5rem;
    aspect-ratio: 1;
    border-radius: 50%;
    background: grey;
    --ldr: conic-gradient(#0000 10%,#000), linear-gradient(#000 0 0) content-box;
    -webkit-mask: var(--ldr);
    mask: var(--ldr);
    -webkit-mask-composite: source-out;
    mask-composite: subtract;
    animation: LDR 1s infinite linear;
}

@keyframes LDR {
    to {
        transform: rotate(1turn)
    }
}