﻿
#xrx-navbar-brand-header {
    display: flex;
    justify-content: space-between; 
    align-items: center; 
    padding: 0.5rem 1rem;
    background-color: #fff !important;
}

    #xrx-navbar-brand-header .nav-logo img {
        max-height: 50px; 
        height: auto;
    }


    #xrx-navbar-brand-header .app-brand {
        flex: 1 1 auto;
        text-align: center;
        font-size: 2.85rem; 
        white-space: nowrap;
    /*    margin: 0 1rem; */
        margin-left: 3.8rem;
    }

#xrx-navbar-brand-header {
    border-bottom: 1px solid #ccc; 
}

#loginOverlay {
    position: fixed;
    inset: 0;
    background: rgba(255,255,255,0.85);
    display: none; 
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
}


.spinner-ring {
    position: relative;
    width: 4rem;
    height: 4rem;
    animation: spin 1s linear infinite;
}

    .spinner-ring div {
        box-sizing: border-box;
        position: absolute;
        inset: 0;
        border: .5rem solid transparent;
        border-radius: 50%;
    }

        .spinner-ring div:nth-child(1) {
            border-top-color: #9F3700;
        }

        .spinner-ring div:nth-child(2) {
            border-top-color: #808000;
            transform: rotate(90deg);
        }

        .spinner-ring div:nth-child(3) {
            border-top-color: #DB4437;
            transform: rotate(180deg);
        }

        .spinner-ring div:nth-child(4) {
            border-top-color: #0A0A0A;
            transform: rotate(270deg);
        }


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}


.spinner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font: 1.25rem/1 monospace;
    color: #333;
}


@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
