html, body {
    height: 100%;
}

app {
    display: block;
    height: 100%;
}

.header-logo {
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask: url('../images/Logo copy.svg');
    mask: url('../images/Logo copy.svg');
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    width: 130px;
    height: 24px;
}

#blazor-error-ui {
    background: inherit;
    bottom: 0;
    display: none;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 100001;
}


.spinner-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: --dxds-secondary-120;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Relative positioning container to layer the elements */
.spinner-wrapper {
    position: relative;
    top: -20vh;
    width: 30vh;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The spinning border circle */
.loading-circle {
    width: 100%;
    height: 100%;
    border: 8px solid --dxds-secondary-90;
    border-top: 8px; 
    border-top-style: solid;
    border-top-color: --dxds-primary-20;    
    border-radius: 50%;
    animation: spin 1s linear infinite;
    position: absolute;
}

/* Center-aligned image masked into a circle */
.spinner-image {
    width: 25vh;
    height: 25vh;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    z-index: 2;
}

/* Spin Keyframe Animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}