/*:root {
    --background-color: #ffffff;*/ /* Light mode background */
    /*--text-color: #000000;*/ /* Light mode text color */
/*}

[data-bs-theme="dark"] {
    --background-color: #121212;*/ /* Dark mode background */
    /*--text-color: #ffffff;*/ /* Dark mode text color */
/*}*/


body {
    /*background-color: var(--background-color);*/
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    /*transition: background-color 0.3s ease, color 0.3s ease;*/
}

.full-height-container {
    min-height: calc(100vh - var(--mud-appbar-height) + var(--mud-appbar-height) / 4);
}

.button-container {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
}

.offCanvasFooter, .offCanvasHeader {
    background: rgb(2,0,36);
    background: linear-gradient(90deg, rgba(2,0,36,1) 0%, rgba(9,9,121,1) 35%, rgba(0,212,255,1) 100%);
}

#blazor-error-ui {
    background: #d52828;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 10000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

/*.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

    .loading-progress circle {
        fill: none;
        stroke: #e0e0e0;
        stroke-width: 0.6rem;
        transform-origin: 50% 50%;
        transform: rotate(-90deg);
    }

        .loading-progress circle:last-child {
            stroke: #1b6ec2;
            stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
            transition: stroke-dasharray 0.05s ease-in-out;
        }

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: bold;
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
}

    .loading-progress-text:after {
        content: var(--blazor-load-percentage-text, "Loading");
    }*/

.loading-container {
    background-color: #1b1b1b;
    display: flex;
    flex-direction: column;
    overflow-y: hidden;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
}

.loading-image {
    width: 250px; /* Adjust size as needed */
    height: auto;
}

.loading-text {
    margin-top: 1rem; /* Space between image and text */
    font-size: 1rem;
    text-align: center;
    min-height: 1.2rem; /* Ensure space for the text is always reserved */
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Roboto', sans-serif; /* Set the font */
    font-weight: 400; /* Set the font weight */
    color: #c4c4c4;
}

.mud-input-label,
.mud-input-control > .mud-input-control-input-container > .mud-input-label-inputcontrol {
    font-size: 1rem; /* 1 rem is default */
}
