.loading-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1000;
    
    background-image: url('images/customer/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #f5f5f5;
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.loading-logo {
    width: 400px;
    max-width: 80%;
    height: auto;
    margin-bottom: 40px;
}

.loading-bar {
    width: 300px;
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
    margin-bottom: 15px;
}

.loading-bar-fill {
    height: 100%;
    background-color: var(--mud-palette-primary, #1b6ec2);
    width: var(--blazor-load-percentage, 0%);
    transition: width 0.1s linear;
}

#blazor-error-ui{
    position: absolute;
    width: 75vw;
    height: 32px;
    opacity: 0.75;
    top: 2rem;

    left: 50%;
    transform: translateX(-50%);
    
    border-radius: 4px;
}

/* Hide autofocus on h1 */
h1:focus {
    outline: none;
}