html, body {
    height: 100%;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    display: block;
    background-image: url('../images/TransferaLogo.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 200px;
    height: 50px;
    min-width: 110px;
}

#blazor-error-ui {
    background: var(--bs-body-bg);
    color: var(--bs-body-color);
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}

.custom-splash-wrap {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
}

.custom-splash-ring-wrap {
    position: relative;
    width: 210px;
    height: 210px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .custom-splash-ring-wrap::before {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        border: 5px solid var(--bs-border-color);
        box-sizing: border-box;
    }

.custom-splash-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: var(--bs-primary);
    border-right-color: var(--bs-primary);
    box-sizing: border-box;
    animation: customSplashSpin 1s linear infinite;
}

.custom-splash-logo-box {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-color: var(--bs-body-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.custom-splash-logo {
    width: 95px;
    height: auto;
    display: block;
}

.custom-splash-caption {
    font-size: 24px;
    font-weight: 600;
    /*font-style: italic;*/
    font-family: var(--bs-body-font-family);
    color: var(--bs-body-color);
    letter-spacing: 0.5px;
    text-align: center;
    line-height: 1.3;
}

@keyframes customSplashSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
