html, body {
    font-family: 'Exo 2.0', sans-serif;
}

.content_main {
    padding-top: 0px;
    flex: 0;
    top: 0px;
    left: 0px;
    padding-bottom: 20px;
}

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid red;
}

.validation-message {
    color: 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;
    }


.autocomplete {
    position: relative;
}

    .autocomplete .optionsnomargin {
        position: absolute;
        left: 0;
        background: white;
        width: 100%;
        padding: 0;
        z-index: 10;
        border: 1px solid #ced4da;
        border-radius: 0.5rem;
        box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    }

    .autocomplete .options {
        position: absolute;
        top: 60px;
        left: 0;
        background: white;
        width: 100%;
        padding: 0;
        z-index: 10;
        border: 1px solid #ced4da;
        border-radius: 0.5rem;
        box-shadow: 0 30px 25px 8px rgba(0, 0, 0, 0.1);
    }

    .autocomplete .option {
        display: block;
        padding: 0.25rem;
        font-size: smaller;
    }

        .autocomplete .option .option-text {
            padding: 0.25rem 0.5rem;
        }

        .autocomplete .option:hover {
            background: #1E90FF;
            color: #fff;
        }

        .autocomplete .option.disabled {
            background-color: lightgrey;
            cursor: not-allowed;
        }

            .autocomplete .option.disabled:hover {
                background: lightgrey;
                color: var(--bs-body);
            }

    .autocomplete .tr {
        display: block;
        padding: 0.25rem;
        font-size: smaller;
    }

        .autocomplete .tr .option-text {
            padding: 0.25rem 0.5rem;
        }

        .autocomplete .tr:hover {
            background: #1E90FF;
            color: #fff;
        }

        .autocomplete .tr.disabled {
            background-color: lightgrey;
            cursor: not-allowed;
        }

            .autocomplete .tr.disabled:hover {
                background: lightgrey;
                color: var(--bs-body);
            }

.spinner {
    border: 16px solid silver;
    border-top: 16px solid #337AB7;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 700ms linear infinite;
    top: 40%;
    left: 50%;
    margin-left: -40px;
    position: fixed;
    z-index: 9999;
}

.suspense.spinner {
    position: relative;
}

@keyframes spin {
    0% {
        transform: rotate(0deg)
    }

    100% {
        transform: rotate(360deg)
    }
}


.pb-10 {
    padding-bottom: 6rem !important;
}


/* This is the part that actually hides the 'Choose file' text box for camera inputs */
label.cameraButton input[accept*="camera"] {
    display: none;
}

/* desktop */
.w-10 {
    width: 10% !important;
}

.w-15 {
    width: 15% !important;
}

.w-20 {
    width: 20% !important;
}

.w-21 {
    width: 21% !important;
}

.w-22 {
    width: 22% !important;
}

.w-23 {
    width: 23% !important;
}

.w-24 {
    width: 24% !important;
}

.w-26 {
    width: 26% !important;
}

.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-80 {
    width: 80% !important;
}

.w-90 {
    width: 90% !important;
}

/* mobile */
@media all and (max-width: 767px) {

    .w-sm-100 {
        width: 100% !important;
    }

    .w-sm-90 {
        width: 90% !important;
    }

    .w-sm-80 {
        width: 80% !important;
    }

    .w-sm-70 {
        width: 70% !important;
    }

    .w-sm-60 {
        width: 60% !important;
    }

    .w-sm-50 {
        width: 50% !important;
    }

    .w-sm-40 {
        width: 40% !important;
    }

    .w-sm-30 {
        width: 30% !important;
    }

    .w-sm-20 {
        width: 20% !important;
    }

    .text-sm {
        font-size: smaller;
    }

    .brnodisplay {
        display: inline;
    }
}

@media (min-width: 979px) {

    .brnodisplay {
        display: none;
    }

    .w-md-20 {
        width: 20% !important;
    }

    .w-md-30 {
        width: 30% !important;
    }

    .w-md-40 {
        width: 40% !important;
    }

    .w-md-50 {
        width: 50% !important;
    }

    .w-md-60 {
        width: 60% !important;
    }

    .w-md-70 {
        width: 70% !important;
    }

    .w-md-80 {
        width: 80% !important;
    }

    .w-md-90 {
        width: 90% !important;
    }
}

.mt-10 {
    margin-top: 6rem !important;
}

@media (max-width: 978px) {



    .container {
        padding: 0;
        margin: 0;
    }

    body {
        padding: 0;
    }

    .navbar-fixed-top, .navbar-fixed-bottom, .navbar-static-top {
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 0;
    }
}

.sticky-bottom-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 5;
    text-align: center;
    padding: 3px;
}

.top-nav {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 5;
}

.page-name {
    left: 0;
    width: 100%;
    padding: 10px;
    z-index: 5;
}

.bg-light-yellow {
    --bs-bg-opacity: 1;
    background-color: lightyellow;
}

.bg-light-grey {
    --bs-bg-opacity: 1;
    background-color: lightgray;
}

.bg-yellow {
    --bs-bg-opacity: 1;
    background-color: yellow;
}


.blue-color {
    color: blue;
}

.green-color {
    color: green;
}

.teal-color {
    color: teal;
}

.yellow-color {
    color: yellow;
}

.red-color {
    color: red;
}

.font-bold {
    font-weight: bold;
}

.float-right-top {
    position: absolute;
    right: 0;
    top: 0;
}

#module {
    font-size: 1rem;
    line-height: 1.5;
}


    #module #collapseExample.collapse:not(.show) {
        display: block;
        height: 3rem;
        overflow: hidden;
    }

    #module #collapseExample.collapsing {
        height: 3rem;
    }

    #module a.collapsed::after {
        content: '+ Show More';
    }

    #module a:not(.collapsed)::after {
        content: '- Show Less';
    }

tr th {
    background: rgb(223, 180, 8);
    background-color: rgb(223, 180, 8);
    color: white;
}

th {
    background: white;
    position: sticky;
    text-align: center;
    top: 0; /* Don't forget this, required for the stickiness */
    box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}


.timepicker {
    background-color: white;
    cursor: pointer;
    border: 1px solid black;
}

    .timepicker:hover {
        background-color: lightblue;
    }

.timePickerDiv {
    width: max(25vw, 200px);
}

.urgent {
    color: red;
    font-size: larger;
}

.btn-yellow {
    --bs-btn-color: #000000;
    --bs-btn-bg: #ffff99;
    --bs-btn-border-color: #ffff99;
    --bs-btn-hover-color: #000000;
    --bs-btn-hover-bg: #5c636a;
    --bs-btn-hover-border-color: #565e64;
    --bs-btn-focus-shadow-rgb: 130, 138, 145;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #565e64;
    --bs-btn-active-border-color: #51585e;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #000000;
    --bs-btn-disabled-bg: #ffff99;
    --bs-btn-disabled-border-color: #ffff99;
}

.card-link {
    background: #54585A;
    background-color: #54585A;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    width: 18rem;
    border-radius: 25px;
}

    .card-link a {
        text-decoration: none;
    }

        .card-link a text {
            color: white;
            font-family: inherit;
            font-weight: bold;
            font-size: large;
            padding-left: 7px;
        }

.sticky-bottom-nav a {
    /*    background: #54585A;
    background-color: #54585A;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);*/
    border-radius: 25px;
    text-decoration: none;
}

.menu-icon {
    --fa-secondary-opacity: 1.0;
    --fa-primary-color: #E2B61A;
    --fa-secondary-color: #54585A;
}


.sticky-bottom-nav a:focus {
    background-color: rgb(223, 180, 8);
}

.sticky-bottom-nav a text {
    color: black;
    font-family: inherit;
    font-weight: bold;
    font-size: large;
    padding-left: 7px;
}

.customScheduler .dxbs-sc-time-cell {
    height: 250px !important;
}

.header-columns {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.header-column {
    flex: 1;
    min-width: 240px;
}




/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
    visibility: hidden; /* Hidden by default. Visible on click */
    min-width: 250px; /* Set a default minimum width */
    margin-left: -125px; /* Divide value of min-width by 2 */
    border-radius: 2px; /* Rounded borders */
    padding: 16px; /* Padding */
    position: fixed; /* Sit on top of the screen */
    z-index: 1; /* Add a z-index if needed */
    left: 50%; /* Center the snackbar */
    bottom: 30px; /* 30px from the bottom */
}

    /* Show the snackbar when clicking on a button (class added with JavaScript) */
    #snackbar.show {
        visibility: visible; /* Show the snackbar */
        /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
        -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
        animation: fadein 0.5s, fadeout 0.5s 2.5s;
    }

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@media print {
    body {
        visibility: hidden;
    }

    /* Only make the modal content visible during printing */
    .printable-modal-content {
        visibility: visible;
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        background: white;
        z-index: 9999;
    }

        /* Ensure everything inside the modal is visible */
        .printable-modal-content * {
            visibility: visible;
        }

    .print-section-header {
        padding-left: 5px;
    }

    .no-print {
        display: none !important;
    }

    .card-body.d-flex {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .header-column {
        flex: 1 1 45%;
        min-width: 250px;
    }

    .border-bottom-black {
        border-bottom: 2px solid black;
    }

    .wrap-indent {
        white-space: pre-wrap;
        word-wrap: break-word;
    }

    .comment-row {
        display: flex;
        align-items: flex-start;
        margin-bottom: 2px;
    }

    .comment-label {
        width: 100px; /* adjust as needed */
        font-weight: bold;
        flex-shrink: 0;
    }

    .comment-text {
        flex: 2;
        white-space: pre-wrap;
        word-wrap: break-word;
        padding-left: 30px;
    }

    .underline {
        text-decoration: underline;
        font-weight: bold; 
    }
}


.ms-10 {
    margin-left: 6rem !important;
}

.ms-15 {
    margin-left: 9rem !important;
}

.ms-20 {
    margin-left: 12rem !important;
}

.link-like-div {
    /* Add typical link styles */
    color: blue; /* Or your preferred link color */
    text-decoration: underline; /* Add an underline */
    cursor: pointer; /* Change the cursor to a pointer on hover */
    /* Optional: Add hover effect for visual feedback */
    &:hover

{
    color: darkblue; /* Darken the text color on hover */
    text-decoration: none; /* Or keep the underline */
}
}