﻿/*
This is the css that I definitely am keeping

*/

/*Variables
    https://react.fluentui.dev/?path=/docs/theme-colors--docs
*/
:root {
    /*    Warning colors   var(--colorStatusDangerBackground2)   var(--colorStatusDangerBackground3) */
    --colorStatusDangerBackground2: #eeacb2;
    --colorStatusDangerBackground3: #c50f1f;
    /*    Inverted background Text   var(--colorNeutralForegroundStaticInverted) */
    --colorNeutralForegroundStaticInverted: #ffffff;
    /*    Banner Background Color  var(--colorBrandBackgroundSelected)     #0f548c*/
    --colorBrandBackgroundSelected: #0f6cbd;
    /*    Orange highlight   var(--colorPalettePeachBorderActive)  #ff8c00  */
    --colorPalettePeachBorderActive: #e88651;
    /*    Submenu and footer background (inverted)    var(--colorNeutralBackgroundInverted) */
    --colorNeutralBackgroundInverted: #292929;
    /*    body background color    var(--colorSubtleBackgroundSelected) */
    --colorSubtleBackgroundSelected: #ebebeb;
    /*very light  background  var(--colorNeutralBackground4) */
    --colorNeutralBackground4: #f0f0f0;
    /*    
        Seating Assignments - these are pulled from the LuColors table and are not used here yet.
    Assigned Seats    var(--colorPaletteLightGreenBackground2) */
    --colorPaletteLightGreenBackground2: #a7e3a5;
    /*Unavailable Seat is the same as body background   #ebebeb */
    /* Selected Seat  var(--colorPaletteYellowBackground1)  */
    --colorPaletteYellowBackground1: #fef7b2;
    /*    Buttons*/
    /* Selected Seat  var(--colorPaletteRedBackground3)  Caution, Delete, Clear   #d13438;*/
    /*    --colorPaletteRedBackground3: #d13438;   not used*/
    /* Selected Seat  var(--colorPaletteRedForeground1)  Caution, Delete, Clear */
    --colorPaletteRedForeground1: #bc2f32;
    /* Selected Seat  var(--colorPaletteGreenBackground3) Approve, Yes, Go */
    --colorPaletteGreenBackground3: #107c10;
    /* Grid selected items toolbar background gray */
    /* Selected Seat  var(--colorNeutralBackground1Pressed)  Setup, Assign Chart, Labels, Occ Riders */
    --colorNeutralBackground1Pressed: #e0e0e0;
    /* Selected Seat  var(--toolbarFont)  */
    --toolbarFont: 15px;
    /* Selected Seat  var(--toolbarHeight)  */
    --toolbarHeight: 47px;
}

/*This fixes the issue with the grid header buttons not having rounded corners.*/
.dxbl-grid .dxbl-grid-table > thead > tr > .dxbl-grid-command-cell > .dxbl-grid-header-content > .dxbl-btn {
    margin: 0 !important;
}

.warning-panel {
    background-color: var(--colorStatusDangerBackground3);
    font-weight: bold;
    font-size: 14px;
    color: white;
    padding: 2px;
    text-align: center;
    vertical-align: middle
}

/*.warning-panel-tall {
    background-color: var(--colorStatusDangerBackground3);
    font-weight: bold;
    font-size: 14px;
    color: white;
    padding: 2px;
    text-align: left;
    vertical-align: middle;
}*/

/*.toolbar-padding {
    font-weight: bold;
    padding: 2px;
    height: var(--toolbarHeight);
    text-align: center;
    font-size: var(--toolbarFont);
}*/

/* Add spacing between wrapped rows in toolbars */
/*.gridtop-toolbar > * {
    margin-bottom: 5px;
    margin-top: 5px;
}*/

/*.grid-toolbar {
    font-weight: bold;
    padding: 2px;
    height: var(--toolbarHeight);
    text-align: center;
    font-size: var(--toolbarFont);
}
var(--colorNeutralBackground1Pressed)*/



/*.toolbar-padding {
    margin: 5px;
}*/

.dialog-toolbar {
    background-color: var(--colorNeutralBackground1Pressed);
    font-weight: bold;
    padding: 2px;
    height: var(--toolbarHeight);
    font-size: var(--toolbarFont);
    text-align: right;
    width: 100%;
}

/*.dialog-toolbar {
    background-color: var(--colorNeutralBackground1Pressed);
    font-weight: bold;
    padding: 2px;
    height: var(--toolbarHeight);
    font-size: var(--toolbarFont);
    text-align: right;
    width: 100%;
}*/
.tabs, .tabs a {
    font-size: var(--toolbarFont);
    padding: 5px;
}

.outline-button, .outline-button a {
    color: var(--colorBrandBackgroundSelected);
}

.lightfont, .lighfont a {
    color: white !important;
}

/*Not used currently*/
.warningfont, .warningfont a {
    color: var(--colorStatusDangerBackground3) !important;
}

/* Flashing red background warning - used in right footer*/
@keyframes flash {
    0% {
        background-color: var(--colorStatusDangerBackground3);
    }

    50% {
        background-color: var(--colorStatusDangerBackground2);
    }

    100% {
        background-color: var(--colorStatusDangerBackground3);
    }
}

.flashing-warning {
    font-weight: bold;
    animation: flash 1s infinite;
    background-color: var(--colorStatusDangerBackground3);
    color: var(--colorNeutralForegroundStaticInverted);
}

.card-center {
    text-align: center;
}

.editform {
    margin-top: 5px;
    margin-bottom: 5px;
    padding: 15px;
}

.editform-wide {
    min-width: 1000px;
}

.editform-med {
    min-width: 700px;
}

.editform-tabbackground {
    background-color: var(--colorNeutralBackground4);
}

/* bGridFormCheckboxLabel */
.editform-checkboxrow {
    display: flex;
    align-items: center;
    gap: 0px;
}

/*for comboboxes with images*/
.dynamic-icon {
    width: 20px;
    height: 20px;
    padding: 0;
    border: none;
    /* Use the SVG as a mask */
    -webkit-mask-image: var(--icon-url);
    mask-image: var(--icon-url);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
    /* Icon color */
    background-color: var(--icon-color) !important;
}

/*This is for checkboxes to justify center. I have to make sure having this hear doesn't cause other issues.*/
/*.justify-center {
    justify-content: center;
}*/

/*.dxbl-fl .dxbl-fl-item.justify-center .dxbl-fl-ctrl-nc {
    margin-top: unset;
    align-self: center;
}*/

/*.editform-checkboxrow {
    display: flex;
    align-items: center;
    gap: 0px;
}*/
/*    align-self: flex-start;  these are supposed to align to the top, but they don't work
    margin-top: 2px;*/

.inline-button {
    display: inline-flex;
    align-items: center;
}

.toolbarmargin {
    margin-top: -15px;
    margin-bottom: 5px;
    margin-left: 15px;
    margin-right: 15px;
}

.grid-rowcount {
    width: 100px !important;
}

.grid-subject-combo {
    width: 160px !important;
}

.formlayout-header {
    font-weight: bold;
    padding: 3px;
}

.formlayoutitem-aligntop > div {
    margin-top: 0 !important;
}

/*This mostly matches the height of the fluent buttons */
.dxbtn-height {
    height: 31px;
}


/* Layout Page CSS */
/* ============================================================
           ROOT VARIABLES
        ============================================================ */

:root {
    --page-bg: #f0f0f0;
    --brand: #0f6cbd;
    --accent: #e88651;
    --surface: #ffffff;
    --surface-dark: #222222;
    --text: #111111;
    --text-inverse: #ffffff;
    --border: #dddddd;
    --border-soft: rgba(255,255,255,0.15);
    --border-strong: rgba(255,255,255,0.28);
}

/* Remove browser defaults */
html, body, form {
    margin: 0;
    padding: 0;
    height: 100%;
}

/* ============================================================
           SHELL LAYOUT
   ============================================================ */

.bc-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--page-bg);
    color: var(--text);
    overflow: hidden;
}

    .bc-shell * {
        box-sizing: border-box;
        font-family: Arial, sans-serif;
    }

    /* ============================================================
           HEADER
        ============================================================ */

    .bc-shell header {
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
    }

    .bc-shell .logo-area {
        background: var(--accent);
        display: flex;
        align-items: center;
        padding-left: 10px;
        padding-right: 10px;
        flex-shrink: 0;
    }

        .bc-shell .logo-area img {
            height: 56px;
            width: auto;
            display: block;
        }

    .bc-shell .header-right {
        display: flex;
        flex-direction: column;
        flex: 1;
        min-width: 0;
    }

    /* ============================================================
           NAV BAR (BLUE)
        ============================================================ */

    .bc-shell .nav-bar {
        background: var(--brand);
        display: flex;
        align-items: center;
        height: 51px;
        position: relative;
    }

    .bc-shell .nav-links {
        display: flex;
        list-style: none;
        height: 100%;
    }

        .bc-shell .nav-links li a {
            color: var(--text-inverse);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            padding: 0 14px;
            margin-top: 7px;
            height: 100%;
            display: flex;
            align-items: center;
            border-right: 1px solid var(--border-strong);
            white-space: nowrap;
        }

        .bc-shell .nav-links li:first-child a {
            padding-left: 20px;
        }

        .bc-shell .nav-links li a:hover,
        .bc-shell .nav-links li a:focus-visible {
            background: rgba(255,255,255,0.15);
        }

        .bc-shell .nav-links li a.active,
        .bc-shell .nav-links li a[aria-current="page"] {
            background: rgba(255,255,255,0.18);
        }

    /* Hamburger */
    .bc-shell .hamburger-btn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0 14px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
    }

        .bc-shell .hamburger-btn img {
            width: 32px;
            height: 32px;
        }

    /* Dropdown */
    .bc-shell .dropdown-menu {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--brand);
        list-style: none;
        z-index: 1000;
        min-width: 200px;
        box-shadow: 2px 6px 12px rgba(0,0,0,0.35);
    }

        .bc-shell .dropdown-menu li a {
            display: block;
            color: var(--text-inverse);
            text-decoration: none;
            padding: 11px 20px;
            font-size: 14px;
            font-weight: 500;
            border-bottom: 1px solid var(--border-soft);
        }

            .bc-shell .dropdown-menu li a:hover {
                background: rgba(255,255,255,0.15);
            }

        .bc-shell .dropdown-menu.open {
            display: block;
        }

    /* ============================================================
           SUB HEADER (BLACK)
        ============================================================ */

    .bc-shell .header-sub {
        background: var(--surface-dark);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 4px 16px;
        color: var(--text-inverse);
        font-size: 13px;
        white-space: nowrap;
    }

        .bc-shell .header-sub a {
            color: var(--text-inverse);
            text-decoration: none;
        }

            .bc-shell .header-sub a:hover {
                text-decoration: underline;
            }

    /* ============================================================
           MAIN CONTENT
        ============================================================ */

    .bc-shell main {
        flex: 1;
        overflow-y: auto;
        padding: 0;
    }

.bc-content {
    display: block;
    padding: 0;
    margin: 15px;
}

/* ============================================================
           FOOTER (STICK TO BOTTOM)
        ============================================================ */

.bc-shell footer {
    background: var(--surface-dark);
    color: var(--text-inverse);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 6px 16px;
    font-size: 12px;
    flex-shrink: 0;
    min-height: 32px;
}

    .bc-shell footer .footer-left {
        min-width: 140px;
    }

    .bc-shell footer .footer-center {
        flex: 1;
        text-align: center;
    }

        .bc-shell footer .footer-center a {
            color: var(--accent);
            text-decoration: none;
        }

    .bc-shell footer .footer-right {
        white-space: nowrap;
        font-size: 11px;
        min-width: 140px;
        text-align: right;
    }

/* ============================================================
           RESPONSIVE
============================================================ */

@media (max-width: 1100px) {

    .bc-shell .nav-links {
        display: none;
    }

    .bc-shell .header-sub {
        display: none;
    }

    .bc-shell .hamburger-btn {
        display: flex;
    }

    .bc-shell .logo-area img {
        height: 40px;
    }

    .bc-shell .logo-area {
        height: 51px;
        padding-left: 6px;
        padding-right: 6px;
    }

    .bc-shell footer .footer-center .full-copy {
        display: none;
    }

    .bc-shell footer .footer-center .short-copy {
        display: inline;
    }

    .bc-shell footer .footer-right {
        display: none;
    }

    .bc-shell footer .footer-left {
        min-width: 0;
    }
}

@media (min-width: 1101px) {
    .bc-shell footer .footer-center .short-copy {
        display: none;
    }

    .bc-shell footer .footer-center .full-copy {
        display: inline;
    }
}

/* This is for closing the dropdown menu when clicking outside */
.menu-overlay {
    position: fixed;
    inset: 0;
    background: transparent;
    z-index: 900; /* must be BELOW dropdown-menu (1000) */
}


/* ============================================================
           Menu Pages
============================================================ */


.card-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* center horizontally */
    align-items: flex-start; /* align cards to the top */
    gap: 0.2in; /* 1/2 inch spacing */
    margin-top: 20px;
}

.panelround {
    flex: 0 1 auto; /* keeps natural width, allows wrapping */
    font-weight: bold;
    padding: 2px;
    width: 420px;
    padding: 20px;
}

/* Target the outer layout container */
.dxfl.dxfl-border {
    border: none !important;
    box-shadow: none !important;
    background-color: transparent !important;
    padding: 0 !important;
}

.panel-header {
    color: var(--colorBrandBackgroundSelected);
    font-size: 18px;
    font-weight: bold;
}

.panel-subheader {
    font-size: 15px;
    font-weight: bold;
    padding-top: 5px;
    padding-bottom: 10px;
    padding-left: 2px;
}

.item-header {
    font-size: 14px;
    font-weight: bold;
}

.item-subheader {
    color: var(--colorNeutralBackgroundInverted);
    font-size: 12px;
    font-weight: normal;
}

.menu-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    margin-top: 2px; /* optional tweak for vertical alignment */
}

.menu-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left; /* ensures both lines are left-justified */
}

.menu-title {
    font-weight: 600;
    font-size: 1rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.menu-subtitle {
    font-weight: 400;
    font-size: 0.875rem;
    color: #666;
    line-height: 1.2;
}

.menu-button-content {
    display: flex;
    flex-direction: row; /* horizontal layout */
    align-items: flex-start; /* align icon with top of text block */
    gap: 0.75rem; /* spacing between icon and text */
}


/* ============================================================
           Referrals List and Reports Toolbar
============================================================ */
/* Increase specificity by scoping under .bc-content */
.bc-content .datepicker {
    width: 620px;
    margin-top: 5px;
}

.bc-content .datepicker-input {
    font-size: 14px;
}

.bc-content .datepicker-buttons,
.bc-content .datepicker .dxbl-btn {
    font-size: 14px;
    background-color: var(--colorBrandBackgroundSelected);
    border-color: var(--colorBrandBackgroundSelected);
    color: white;
}

    .bc-content .datepicker-buttons:hover,
    .bc-content .datepicker .dxbl-btn:hover {
        background-color: #1a7dd6;
        border-color: #1a7dd6;
        color: white;
    }

.bc-content .statuslabel {
    color: var(--colorBrandBackgroundSelected) !important;
}


/* ============================================================
           General Fluent Toolbar - removed Fluent Toolbar because couldn't get gray background.
============================================================ */

.selecteditems-toolbar-shell {
    display: flex;
    flex-wrap: wrap; /* -- THIS makes it wrap */
    align-items: center;
    gap: 8px; /* spacing between items */
    padding: 6px 10px;
    background-color: var(--colorNeutralBackground1Pressed);
}

    .selecteditems-toolbar-shell > * {
        flex-shrink: 0; /* prevents items from squishing */
        margin: 2px 0; /* vertical breathing room when wrapped */
    }

.selecteditems-toolbar-label {
    font-weight: bold;
    margin-right: 8px;
}

.selecteditems-toolbar-card {
    background-color: var(--colorNeutralBackground1Pressed);
    font-weight: bold;
    font-size: var(--toolbarFont);
}


/*     /* Optional: tighten toolbar spacing */
.selecteditems-toolbar > * {
    margin-top: 5px;
    margin-bottom: 5px;
} 

/*.selecteditems-toolbar {
    background-color: var(--colorNeutralBackground1Pressed);
    font-weight: bold;
    padding: 2px;
    height: var(--toolbarHeight);
    font-size: var(--toolbarFont);
}*/
/*    .selecteditems-toolbar > * {
        margin-bottom: 5px;
        margin-top: 5px;
    }

.selecteditems-toolbar-card {
    background-color: var(--colorNeutralBackground1Pressed);
    font-weight: bold;
    font-size: var(--toolbarFont);
}*/

/*.selecteditems-toolbar > * {*/
    /*  background-color: var(--colorNeutralBackground1Pressed);*/
    /*font-weight: bold;
    margin-bottom: 5px;
    margin-top: 5px;
    font-size: var(--toolbarFont);
}*/

.toolbar-center {
    text-align: center !important;
}

.toolbar-darker {
    --fill-color: var(--colorNeutralBackground1Pressed);
    border-color: var(--colorNeutralBackground1Pressed);
}

/* Add spacing between wrapped rows in toolbars */
.toolbar-padding > * {
    margin-bottom: 5px;
    margin-top: 5px;
}

/* If I only want spacing in specific toolbar, I could add this to page.
#toolbar-deactivate {
    display: flex;
    flex-wrap: wrap;
    row-gap: 12px;
    column-gap: 14px;
}*/






/*.datepicker {
    width: 620px;
    margin-top: -5px;
}

.datepicker-input {
    font-size: 14px;
}

.datepicker-buttons {
    font-size: 14px;
    background-color: var(--colorBrandBackgroundSelected);
    border-color: var(--colorBrandBackgroundSelected);
    color: white;
}

    .datepicker-buttons:hover {
        background-color: #1a7dd6; 
        border-color: #1a7dd6;
        color: white;
    }

.statuslabel {
    color: var(--colorBrandBackgroundSelected) !important;
}
*/

/* Fields in a form that have on information tooltip using DxFlyout - this isn't working on page */
/*.fieldinfo {
    width: 24px;
    height: 24px;
    background-image: url("images/FluentBookInformation24.svg");
    background-size: contain;*/ /* Ensures SVG scales to fit the 16x16px box */
/*background-repeat: no-repeat;*/ /* Prevents tiling */
/*background-position: center;*/ /* Centers the icon */
/*display: inline-block;*/ /* Ensures proper rendering within the button */
/*margin: 0 8px 0 0;*/ /* Maintains your margin */
/*vertical-align: middle;*/ /* Aligns icon with button text */
/*}*/

/*

.grid-size-25 {
    max-height: 25%;
}

.grid-size-50 {
    max-height: 50%;
}

.grid-size-60 {
    max-height: 60%;
}

.grid-size-75 {
    max-height: 75%;
}

.grid-size-300 {
    max-height: 300px;
}

.grid-size-400 {
    max-height: 400px;
}

.grid-size-500 {
    max-height: 500px;
}

.valign {
    vertical-align: top !important;
}

.center-img {
    text-align: center;
}

.horizontal-divs {
    display: flex;
    align-items: center; 
}

    .horizontal-divs div {
        margin: 0 10px; 
    }


.app-title {
    margin-top: -20px !important;
    margin-bottom: 10px !important;
    margin-right: 40px !important;
    margin-left: 10px !important;
    text-align: center !important;
    font-size: large !important;
    font-weight: bold !important;
}

.grid-add {
    width: 32px !important;
    height: 32px !important;
    mask-image: url("images/icons/grid-add.png") !important;
    background-color: currentColor;
}

.menu-item {
    background-color: transparent;
    color: var(--colorNeutralForegroundStaticInverted) !important;
}

.menu-popout {
    background-color: lightgoldenrodyellow !important;
    color: black !important;
}


.grid-filter-clear {
    width: 16px !important;
    height: 16px !important;
    mask-image: url("images/icons/grid-filter-clear.svg") !important;
    background-color: currentColor;
    color: gray;
}





.icon16 {
    height: 16px !important;
    width: 16px !important;
}

.icon24 {
    height: 24px !important;
    width: 24px !important;
}

.icon32 {
    height: 32px !important;
    width: 32px !important;
}

.menu-btn {
    color: #fff;
}

.toolbar-btn {
    color: #000000;
}

.toolbar-title {
    color: #000000;
    font: 16px;
}

a, .btn-link {
    color: #006bb7;
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.content {
    padding-top: 1.1rem;
}

h1:focus {
    outline: none;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.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."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}*/
