html, body, .app, .app-loading {
    width: 100%;
    height: 100%;
    min-width: 20rem;
    margin: 0;
    background-color: var(--ugg-color-surface-1);
    color: var(--ugg-color-text-primary);
    scrollbar-color: var(--ugg-color-surface-3) transparent;
    scrollbar-width: thin;
}

.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)
    }
}

/* 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;
}