﻿html, body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

.top-row {
    display: block;
    align-items: center;
    background-color: lightgrey;
    border-bottom: 1px solid darkgrey;
}

.bottom-row {
    display: block;
    align-items: center;
    background-color: darkgrey;
}

.sidebar {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
    color: lightgrey;
}

    .sidebar a {
        color: lightgrey;
    }

    .sidebar .navbar-brand {
        font-size: 1.1rem;
    }

    .sidebar .oi {
        width: 2rem;
        font-size: 1.1rem;
        vertical-align: text-top;
        top: -2px;
    }

.main-content-row {
    min-height: 800px;
}


.blazor-loading-spinner-container {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    color: black;
    z-index: 1000;
}

.blazor-loading-background-container {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.7);
    width: 100%;
    height: 100%;
    z-index: 995;
}