html, body, .app {
    width: 100%;
    height: 100%;
    min-width: 25rem;
    margin: 0;
    background-color: #161617;
    color: #fcfcfd;
}

#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: #db6b30;
    --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)
    }
}

/* Custom scroll bars (not for firefox)*/
::-webkit-scrollbar, ::-webkit-scrollbar-corner, ::-webkit-scrollbar-track {
    background: transparent !important;
}

::-webkit-scrollbar {
    width: 0.75rem !important;
    height: 0.75rem !important;
}

::-webkit-scrollbar-thumb {
    border-radius: 0.4rem !important;
    background: rgba(128, 128, 128, 0.5) !important;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(128, 128, 128, 0.5) !important;
    }
