.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

#blazor-error-ui {
    background: lightyellow;
    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: 1000;
}

    #blazor-error-ui .dismiss {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.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");
    }

code {
    color: #c02d76;
}





/* Converged Styling */

@keyframes grow-in {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    80% {
        transform: scale(1.2);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes shake {
    0% {
        transform: translateX(-5px);
    }

    25% {
        transform: translateX(5px);
    }

    50% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake-animation {
    animation: shake 0.5s;
}

.pop-in {
    animation: popIn 0.5s ease;
}

body {
    font-family: 'Segoe UI', sans-serif;
    background: #f1f2f5;
    min-height: 100vh;
    margin: 0; /* Remove default margin */
    color: white; /* Assuming white text for contrast */
}

.top-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 20px; /* Adjust padding to suit your layout */
}

.center-content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    /*background: linear-gradient(-45deg, #e9ecef, #000, #e9ecef, #000);*/
    background: #262526;
    background-size: 400% 400%;
    animation: gradient-animation 30s ease infinite;
}

.login-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    width: 100%;
    animation: grow-in 0.5s ease-out forwards;
}

.login-title {
    margin-bottom: 1rem; /* Adjusted margin for title */
    text-align: center;
    color: #333;
    font-size: 1.7rem;
}

.logout-spacing {
    margin-left: 140px; /* Space to the right of the heading */
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%; /* Ensures the container takes the full width */
    margin: 2rem 0; /* Adjust top and bottom margin as needed */
}

.form-group {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.form-control {
    max-width: 400px; /* Set to the same width as the login button */
    width: 100%;
    padding: 15px;
    border: 2px solid #dee2e6;
    border-radius: 8px; /* Rounded corners for input boxes */
    font-size: 1rem;
}

.form-control:focus {
    transform: scale(1.02);
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    border-color: #007bff;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-login {
    max-width: 200px; /* Set the max width to 200px */
    width: 100%;
    background-color: #0c5aa8;
    border: none;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

    .btn-login:hover {
        background-color: #598eac;
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

.extra-links {
    text-align: center;
    margin-top: 2rem;
}

    .extra-links a {
        text-decoration: none;
        color: #007bff;
        margin: 0 10px;
    }

        .extra-links a:hover {
            text-decoration: underline;
        }

.validation-message {
    color: red;
    font-size: 1rem;
    font-weight: 400;
    margin-top: 5px;
    margin-left: 5px;
}

.error-message {
    color: red;
    margin: 1rem 0;
    text-align: center;
    animation: popIn 0.5s ease;
}

.page-fade {
    animation: fadeInAnimation ease 1s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.form-group-header {
    display: flex;
    align-items: center;
    margin-bottom: 5px; /* Adjust the bottom margin as needed */
}

.form-label-header {
    width: 180px; /* Fixed width for labels */
    text-align: right;
    margin-right: 10px; /* Space between label and input */
    color: #0c5aa8;
    font-size: larger;
}

.form-input-header {
    flex-grow: 1; /* Input grows to fill remaining space */
    max-width: 600px; /* Maximum width for input fields */
}

.add-button {
    margin-left: 5px; /* Pushes the button to the right */
}

.remove-button {
    margin-left: 5px;
}

.heading-with-logo {
    display: flex;
    align-items: center; /* Align items vertically */
}

.logo {
    margin-left: 10px;
    margin-right: 10px; /* Adjust spacing between logo and heading */
    height: 50px; /* Adjust height as needed */
}

.submit-enrollment-button {
    width: 148px; /* Fixed width for labels */
    margin-top: 15px;
    margin-left: 30px; /* Space between label and input */
    margin-bottom: 50px;
    color: #0c5aa8;
    font-size: larger;
}

.detail-group {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    white-space: nowrap; /* Keep items in a single line */
    margin-bottom: 10px;
}

.field-container {
    display: flex;
    flex-direction: column; /* Stack items vertically */
    margin-bottom: 5px; /* Space between each field */
}

.custom-ldcaccountno-tooltip {
    background-color: #f79c12;
    padding: 5px;
    border-radius: 5px;
    /* Additional styling */
}

:root {
    --rz-white: #ffffff;
    --rz-black: #000000;
    --rz-base-50: #fafafa;
    --rz-base-100: #f5f5f5;
    --rz-base-200: #eeeeee;
    --rz-base-300: #e0e0e0;
    --rz-base-400: #bdbdbd;
    --rz-base-500: #9e9e9e;
    --rz-base-600: #757575;
    --rz-base-700: #616161;
    --rz-base-800: #424242;
    --rz-base-900: #212121;
    --rz-info: #2196f3;
    --rz-info-light: #4dabf5;
    --rz-info-lighter: rgba(33, 150, 243, 0.2);
    --rz-info-dark: #1a78c2;
    --rz-info-darker: #1666a5;
    --rz-success: #4caf50;
    --rz-success-light: #70bf73;
    --rz-success-lighter: rgba(76, 175, 80, 0.16);
    --rz-success-dark: #3d8c40;
    --rz-success-darker: #347736;
    --rz-warning: #ff9800;
    --rz-warning-light: #ffad33;
    --rz-warning-lighter: rgba(255, 152, 0, 0.2);
    --rz-warning-dark: #cc7a00;
    --rz-warning-darker: #ad6700;
    --rz-danger: #f44336;
    --rz-danger-light: #f6695e;
    --rz-danger-lighter: rgba(244, 67, 54, 0.2);
    --rz-danger-dark: #c3362b;
    --rz-danger-darker: #a62e25;
    --rz-on-info: #ffffff;
    --rz-on-info-light: #ffffff;
    --rz-on-info-lighter: #2196f3;
    --rz-on-info-dark: #ffffff;
    --rz-on-info-darker: #ffffff;
    --rz-on-success: #ffffff;
    --rz-on-success-light: #ffffff;
    --rz-on-success-lighter: #4caf50;
    --rz-on-success-dark: #ffffff;
    --rz-on-success-darker: #ffffff;
    --rz-on-warning: #ffffff;
    --rz-on-warning-light: #ffffff;
    --rz-on-warning-lighter: #ff9800;
    --rz-on-warning-dark: #ffffff;
    --rz-on-warning-darker: #ffffff;
    --rz-on-danger: #ffffff;
    --rz-on-danger-light: #ffffff;
    --rz-on-danger-lighter: #f44336;
    --rz-on-danger-dark: #ffffff;
    --rz-on-danger-darker: #ffffff;
    --rz-body-background-color: #e2e2e2;
    --rz-body-font-size: 2rem;
    --rz-text-h1-margin-bottom: 1rem;
    --rz-text-h2-margin-bottom: 1rem;
    --rz-text-h3-margin-bottom: 0.75rem;
    --rz-text-h4-margin-bottom: 0.5rem;
    --rz-text-h5-margin-bottom: 0.5rem;
    --rz-text-h6-margin-bottom: 0.5rem;

    --rz-primary: #092c74;
    --rz-primary-light: #336599;
    --rz-primary-lighter: #d3dae6;
    --rz-primary-dark: #072159;
    --rz-primary-darker: #05173f;
    --rz-secondary: #ff9e19;
    --rz-secondary-light: #ffae42;
    --rz-secondary-lighter: #fff2e0;
    --rz-secondary-dark: #e58c16;
    --rz-secondary-darker: #cc7a14;
    --rz-on-primary: #FFFFFF;
    --rz-on-primary-light: #000000;
    --rz-on-primary-lighter: #092c74;
    --rz-on-primary-dark: #FFFFFF;
    --rz-on-primary-darker: #FFFFFF;
    --rz-on-secondary: #000000;
    --rz-on-secondary-light: #000000;
    --rz-on-secondary-lighter: #ff9e19;
    --rz-on-secondary-dark: #FFFFFF;
    --rz-on-secondary-darker: #FFFFFF;
}

.custom-fieldset-template {
    font-size: 3rem;
}

.outlined-row {
    outline: 2px double #000000;
    outline-offset: 6px;
    margin-bottom: 5px;
}

.flex-container {
    display: flex;
    flex-direction: column; /* Adjust based on your layout */
}


:root {
    h1, h2, h3, h4, h5, h6, p {
           margin-bottom: 0;
    }

    .rz-grid-table {
        z-index: 1;
    }

    .rz-tick-text {
        stroke: none;
        fill: black !important;
    }

--rz-chart-axis-label-color: black !important;
--rz-tabs-tab-text-transform: none !important;
--rz-grid-column-resizer-width:2px !important;

.bg-primary {
    background-color: var(--rz-primary) !important;
}

    .bg-secondary {
        background-color: var(--rz-secondary) !important;
    }

    .rz-dialog-side-content {
        width: 100% !important;
    }

    .rz-column-resizer {
        background-color: var(--rz-primary-lighter) !important;
    }
}

#amazon-q-panel {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 50%;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    transition: transform 0.3s ease-in-out;
}

.amazon-q-hidden {
    transform: translateX(100%);
}

.amazon-q-visible {
    transform: translateX(0%);
}

.search-input {
    height: 40px !important;
    line-height: 40px !important;
    padding: 0 12px !important;
}

.purge-confirm {
    --rz-primary: var(--rz-danger);
    --rz-primary-contrast: var(--rz-danger-contrast);