﻿.loading-screen {
    position: absolute;
    left: 0 !important;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000;
}

.loading-logo {
    max-width: 200px;
    height: auto;
}

.loading-bar-track {
    width: 200px;
    max-width: 80vw;
    height: 4px;
    background: #333;
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar-fill {
    height: 100%;
    width: var(--blazor-load-percentage, 0%);
    background: #fff;
    border-radius: 2px;
    transition: width 0.05s ease-in-out;
}