.nav-bar {
    font-family: 'Poppins', sans-serif; /* Set the Google Font here */
    font-size: 24px;
}

.logo {
    display: inline-block;
    font-size: 1.5em; /* Increase the size a bit */
    font-weight: 700; /* Bold weight for the logo text */
}

.mud-button-outlined-size-large {
    height: 50px !important;
}

.mud-icon-size-large {
    height: 40px !important;
    width: 40px !important;
}

.header-container {
    align-items: center; /* Vertically center the items */
    display: flex;
    justify-content: space-between; /* This will push the logo to the left and the icon to the right */
    margin: auto; /* Center the container */
    max-width: 900px;
    width: 100%; /* Take the full width up to the max-width */
}

.bgload {
    /* !important so that on mobile devices, everythign "behind" the app is colored correctly, once loaded. */
    background-color: #cdd3a6 !important;
}

/******************************************/
/*Psuedo css to render the glass crosshair*/
/******************************************/

.drift-inline:before,
.drift-inline:after {
    content: '';
    position: absolute;
    z-index: 9999;
    left: 50%;
    top: 50%;
    background-color: #000; /* Crosshair color */
    pointer-events: none; /* This makes sure the crosshair doesn't interfere with mouse events */
    /* Adding box-shadow to create a contrasting outline */
    box-shadow: inset 0px 0px 4px 0px #fff, 0px 0px 4px 0px #fff; /* This adds a white shadow around the crosshair */
}

.drift-inline:before {
    /* Vertical line */
    content: '';
    width: 2px; /* Line width */
    height: 30px; /* Total line length */
    margin-left: -1px; /* Half of the width to ensure it is centered */
    margin-top: -15px; /* Half of the height to ensure it is centered */
    clip-path: polygon(0 0, 100% 0, 100% 40%, 0 40%, 0 60%, 100% 60%, 100% 100%, 0 100%); /* Create a gap */
}

.drift-inline:after {
    /* Horizontal line */
    content: '';
    width: 30px; /* Total line length */
    height: 2px; /* Line width */
    margin-left: -15px; /* Half of the width to ensure it is centered */
    margin-top: -1px; /* Half of the height to ensure it is centered */
    clip-path: polygon(0 0, 40% 0, 40% 100%, 60% 100%, 60% 0, 100% 0, 100% 100%, 0 100%); /* Create a gap */
}



/* Center everything in the loader-container div */

.loader-container {
    align-items: center; /* Vertically center */
    display: flex;
    flex-direction: column;
    height: 100%; /* Set the height of the app div to fill the viewport */
    justify-content: center; /* Horizontally center */
    max-width: 100%;
}

body {
    touch-action: pan-x pan-y; /* this allows panning but prevents pinch-zooming */
}

/*div.mud-toolbar.mud-toolbar-gutters.mud-picker-toolbar.mud-theme-default.mud-picker-color-toolbar {
    zoom: 1.5;
    -moz-transform: scale(1.5);
}
.mud-picker-color-controls-row:nth-child(2) {
    zoom: 1.5;
    -moz-transform: scale(1.5);
    margin: 0 !important;
}
*/




/**********************************/
/*BELOW HERE, ONLY LOADING SPINNER*/
/**********************************/




.lds-grid {
    display: inline-block;
    height: 80px;
    position: relative;
    width: 80px;
}

.lds-grid div {
    animation: lds-grid 1.2s linear infinite;
    background: #cef;
    border-radius: 50%;
    height: 16px;
    position: absolute;
    width: 16px;
}

.lds-grid div:nth-child(1) {
    animation-delay: 0s;
    left: 8px;
    top: 8px;
}

.lds-grid div:nth-child(2) {
    animation-delay: -0.4s;
    left: 32px;
    top: 8px;
}

.lds-grid div:nth-child(3) {
    animation-delay: -0.8s;
    left: 56px;
    top: 8px;
}

.lds-grid div:nth-child(4) {
    animation-delay: -0.4s;
    left: 8px;
    top: 32px;
}

.lds-grid div:nth-child(5) {
    animation-delay: -0.8s;
    left: 32px;
    top: 32px;
}

.lds-grid div:nth-child(6) {
    animation-delay: -1.2s;
    left: 56px;
    top: 32px;
}

.lds-grid div:nth-child(7) {
    animation-delay: -0.8s;
    left: 8px;
    top: 56px;
}

.lds-grid div:nth-child(8) {
    animation-delay: -1.2s;
    left: 32px;
    top: 56px;
}

.lds-grid div:nth-child(9) {
    animation-delay: -1.6s;
    left: 56px;
    top: 56px;
}

@keyframes lds-grid {
    0%, 100% { opacity: 1; }

    50% { opacity: 0.5; }
}
