* {
    font-family: 'Spectral', serif;
    transition-property: width, position, left, right, top, bottom, box-shadow;
    transition-duration: 100ms;
    box-sizing: border-box;
}


.darkmode {
    filter: invert(100%) hue-rotate(180deg);
    background-color: ghostwhite;
    font-weight: bold; /* makes all text bold */
}
    .darkmode .feedbackContent,
    .darkmode .splashMenu,
    .darkmode .splashMenu2,
    .darkmode .titledGroupTitle,
    .darkmode .tableWrapper {
        filter: invert(10%) hue-rotate(0deg);
    }
    .darkmode .boardBackground {
        filter: invert(10%) hue-rotate(0deg);
    }
    .darkmode .titledGroupTitle{
        background:transparent;
    }
    .darkmode .feedbackContent{
        background-color:ghostwhite;
    }
    .darkmode .listItemContent {
        filter: invert(10%) hue-rotate(0deg);
        background: #E7E7E7
    }

    .darkmode option {
        background: #1e1e1e; /* dark gray panel */
        color: #e0e0e0; /* light text */
    }

    /*.darkmode select {
        background: #1e1e1e;*/ /* dark gray */
        /*color: #e0e0e0;*/ /* light text */
    /*}*/

    .darkmode video,
    .darkmode iframe,
    .darkmode picture,
    .darkmode canvas,
    .darkmode .removeButton,
    .darkmode .feedbackTitle,
    .darkmode .feedbackArrow,
    .darkmode .splashMessage,
    .darkmode .topLogo {
        filter: invert(100%) hue-rotate(180deg);
    }

    .darkmode .removeButton {
        background-color: red;
        filter: invert(100%) hue-rotate(180deg);
    }
    /*html {
    filter: invert(100%) hue-rotate(180deg);*/
    /*    background: black;
*/
    /*}*/
    /*img, video, iframe, picture, canvas {
    filter: invert(100%) hue-rotate(180deg);
}*/
    /*.topLogo {
    filter: invert(100%) hue-rotate(180deg);
}

button {
    filter: invert(100%) hue-rotate(180deg);
}*/
    /* Add this class to make the page read-only */
    .readonly-page, .readonly-page * {
        pointer-events: none !important;
        user-select: none !important;
        -webkit-user-select: none !important;
        -moz-user-select: none !important;
        -ms-user-select: none !important;
        background-color: #f5f5f5 !important; /* Optional: subtle visual cue */
        color: #888 !important; /* Optional: dim text */
    }

body {
    overflow: auto;
    background-image: url(Images/dot-grid.png);
    
}

select {
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
    text-align: center;
}

input {
    text-align: center;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
}

    input:disabled {
        background-color: #EFEFEF;
    }

/* Container for the scrolling text */
/*.scrolling-container {
    width: 100%;*/ /* Set the width of the container */
    /*height: 40px;*/ /* Set the height of the container */
    /*overflow: hidden;*/ /* Hide the overflowing text */
    /*border-top: 2px solid green;*/ /*Optional border around the container */
    /*position: relative;
    background: #0C9543;
}*/

/* Style for the scrolling text */
/*.scrolling-text {
    display: inline-block;
    white-space: nowrap;*/ /* Prevent line breaks */
    /*padding-left: 0%;*/ /* Start the text off-screen from the right */
    /*animation: scroll-text 10s linear infinite;*/ /* Apply animation */
    /*animation-delay: 0s;
    font-size: 1.5em;
    color: white;
}*/

/* Keyframes to animate the text */
/*@keyframes scroll-text {
    0% {
        transform: translateX(100%);*/ /* Start from the right */
    /*}


    100% {
        transform: translateX(-100%);*/ /* End off-screen to the left */
    /*}
}*/

.square-button {
    width: 80px;
    height: 80px;
    background-color: rgb(12, 149, 67);
    color: white;
/*    border: none;
*/    cursor: pointer;
    font-size: 14px;
    margin: 10px 10px 0 0;
    transition: background-color 0.3s;
    border-radius: 5px;
}

    .square-button:hover {
        background-color: darkgreen;
    }

    .square-button.active {
        background-color: #004d00; /* Darker green for active */
    }

/* toolTab container */
.toolTab-container {
    margin-top: 20px;
    display: none;
}

.toolTab-buttons button {
    padding: 10px 20px;
    margin-right: 5px;
    cursor: pointer;
    background-color: rgb(12, 149, 67);
    border: none;
}

    .toolTab-buttons button.active {
        background-color: #aaa;
    }

.toolTabButtons {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap; /* Optional: wraps buttons if they don't fit in one row */
}

.toolTab-content {
    display: none;
    margin-top: 20px;
    padding: 15px;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
    position: relative;
    overflow:hidden;
}

    .toolTab-content.active {
        display: block;
    }

.close-tab-button {
    position: absolute;
    top: 5px;
    right: 10px;
    background-color: red;
    color: white;
/*    border: none;
*/    cursor: pointer;
    padding: 5px 10px;
    font-size: 12px;
    border-radius:5px;
}

.splash {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: #23AE58;*/
    z-index: 10;
}

.splashBackground {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /*background-color: red;*/
    background: linear-gradient(225deg,#009E4F,#009E4F,#009E4F,#009E4F,#228EC2,#009E4F,#009E4F,#009E4F,#009E4F) !important;
    animation: fancyGradient 120s forwards;
    transform-origin: center;
}

@keyframes fancyGradient {
    0% {
        transform: rotate(0deg) scale(400%);
    }
/*    50% {
        transform: rotate(360deg) scale(250%);
    }*/
    5% {
        transform: rotate(360deg) scale(200%);
    }
    40% {
        transform: rotate(0deg) scale(400%);
    }
    70% {
        transform: rotate(360deg) scale(300%);
    }
    100% {
        transform: rotate(0deg) scale(400%);
    }
}

.standalone {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #23AE58;
    z-index: 10;
}

.standaloneContainer {
    overflow: scroll;
}

.standaloneContentContainer {
    overflow: auto;
    width: 100%;
    height: 100%;
}

.standaloneSplash {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #23AE58;
    z-index: 10;
}

.standaloneMessage {
    height: 200px;
    width: 100%;
    text-align: center;
    font-size: 10em;
    color: white;
    transition-duration: 1000ms;
    margin-top: 20px;
}

    .standaloneMessage img {
        max-height: 150px;
        padding: 10px;
        position: relative;
        top: 50%;
        transform: translate(0, -50%);
    }

.splashMessage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10em;
    color: white;
    transition-duration: 1000ms;
    transform: translate(-50%, -50%) scale(var(--zoom-scale)); /* ADDED scale */
    transform-origin: center center;
}

    .splashMessage img {
        max-height: 150px;
        padding: 10px;
    }

.splashLoader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.splashLoaderMessage {
    position: absolute;
    top: 80%;
    left: 50%;
    height: 200px;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
    text-align: center;
}

.splashMenu {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--zoom-scale)); /* ADDED scale */
    transform-origin: center center;
    background-color: white;
    width: 35vw;
    min-width: 700px;
    border: 3px solid #0C9543;
    border-radius: 10px;
    font-size: 1.1em;
    box-shadow: 10px 10px 3px 0px rgba(0,0,0,0.4);
}

.splashMenu2 {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%) scale(var(--zoom-scale)); /* ADDED scale */
    transform-origin: center center;
    background-color: white;
    width: 20vw;
    min-width: 500px;
    border: 3px solid #0C9543;
    border-radius: 10px;
    font-size: 1.1em;
    box-shadow: 10px 10px 3px 0px rgba(0,0,0,0.4);
    max-height: 200px;
}


/*.splashMenu {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 20vw;
    min-width: 500px;
    border: 3px solid #0C9543;
    border-radius: 10px;
    font-size: 1.1em;
    box-shadow: 10px 10px 3px 0px rgba(0,0,0,0.4);
}

.splashMenu2 {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    width: 20vw;
    min-width: 500px;
    border: 3px solid #0C9543;
    border-radius: 10px;
    font-size: 1.1em;
    box-shadow: 10px 10px 3px 0px rgba(0,0,0,0.4);
    max-height:200px;
}*/

.menuHeader {
    text-align: center;
    font-size: 1.5em;
    background-color: #0C9543;
    /*background: linear-gradient(90deg,#0C9543,#228EC2,#0C9543) !important;*/
    color: white;
    width: 100%;
    margin-top: -1px;
}

.changeLogHeader {
    text-align: center;
    font-size: 1.5em;
    background-color: #0C9543;
    /*background: linear-gradient(90deg,#0C9543,#228EC2,#0C9543) !important;*/
    color: white;
    width: 100%;
}

.menuItemHolder {
    margin-left: 25px;
    margin-right: 25px;
    padding-bottom: 50px;
    padding-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: center;
    grid-column-gap: 0px;
    grid-row-gap: 50px;
}

.changeLogItemHolder {
    margin-left: 25px;
    margin-right: 25px;
    padding-bottom: 20px;
    padding-top: 0px;
    max-height:150px;
    overflow:auto;
    scrollbar-width:none;
}

.changeLogMessage {
    padding: 5px;
    width: 100%;
    resize: vertical;
    margin-bottom: 10px;
}

.menuItem {
    width: 200px;
    display: grid;
    align-self: center;
    grid-template-columns: 1fr;
    justify-items: center;
    cursor: pointer;
    font-weight: bold;
    /*box-shadow: 10px 10px 3px 0px rgba(0,0,0,0.4);*/
}

    .menuItem img {
        align-self: center;
        cursor: pointer;
    }

    .menuItem label {
        margin-top: 10px;
        margin-bottom: 10px;
        align-self: center;
        cursor: pointer;
    }

.topLogo {
    max-height: 45px;
    padding: 5px;
    margin-top: 2.5px;
}

.topBar {
    width: 100%;
    height: 50px;
    position: fixed;
    top: 0;
    left: 0;
    /*background-color: #0C9543;*/
    background: linear-gradient(225deg,#009E4F,#009E4F,#228EC2,#009E4F,#009E4F) !important;
    color: white;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.4);
    z-index: 5;
}

    .topBar > label {
        position: absolute;
        top: 0%;
        left: 50%;
        transform: translate(-50%, 0);
        font-size: 2.5em;
        line-height: 50px;
    }

.topBarItems {
    width: 100%;
    height: 50px;
    display: grid;
    grid-template-columns: 4fr 1fr 4fr;
    padding-left: 10px;
    padding-right: 10px;
    overflow: hidden;
}

    .topBarItems > div:nth-child(1) > img {
        height: 30px;
        margin-top: 10px;
        margin-right: 10px;
        cursor: pointer;
    }

        .topBarItems > div:nth-child(1) > img:nth-child(3) {
            height: 25px;
            transform: translate(0, -2.5px);
        }

    .topBarItems > div:nth-child(2) {
        line-height: 50px;
        font-size: 2.5em;
        justify-self: center;
    }

    .topBarItems > div:nth-child(3) {
        justify-self: right;
        line-height: 50px;
        font-size: 1.4em;
    }

        .topBarItems > div:nth-child(3) > img {
            height: 30px;
            margin-top: 10px;
            cursor: pointer;
        }

        .topBarItems > div:nth-child(3) > div {
            display: inline-block;
            height: 50px;
            line-height: 50px;
            position: relative;
            top: -10px;
            margin-right: 10px;
        }

.sidebar {
    width: 300px;
    position: absolute;
    top: 50px;
    left: 0;
    height: calc(100% - 50px);
    text-align: center;
    padding-top: 25px;
    font-size: 1.2em;
    background-color: #0BAA4C;
    color: white;
    box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.4);
    z-index: 4;
}

    .sidebar img {
        margin-top: 25px;
        max-width: 95%;
    }

/*.boardHolder {
    position: absolute;
    top: 50px;
    left: 300px;
    height: calc(100% - 50px);
    width: calc(100% - 300px);
    padding: 25px;
}

    .boardHolder > div {
        display: flex;
        flex-direction: column;
        margin-bottom: 100px;
        border: 1px solid #0C9543;
        border-radius: 5px;
        padding-top: 50px;
        padding-left: 50px;
        background: white;
        width: fit-content;
        box-shadow: 15px 15px 10px 0px rgb(0 0 0 / 40%);
    }

        .boardHolder > div > div:nth-child(1) {
            display: block;
            text-align: left;
            padding-left: 10px;
            width: calc(100% + 52px);
            height: 50px;
            line-height: 50px;
            position: relative;
            left: -51px;
            top: -51px;
            border-top-left-radius: 5px;
            border-top-right-radius: 5px;
            background: #0C9543;
            color: white;
            font-size: 2em;
            margin-bottom: -25px;
        }

        .boardHolder > div > div {
            display: flex;
            margin-bottom: 50px;
        }

            .boardHolder > div > div > img {
                margin-right: 50px;
                border: 1px solid rgba(0, 0, 0, 0.4);
                border-radius: 5px;
                box-shadow: 5px 5px 5px 0px rgb(0 0 0 / 40%);
            }*/

.systemLink {
    display: block;
    border: 1px solid;
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5px;
    cursor: pointer;
    user-select: none;
}

.listHolder {
    position: absolute;
    top: 50px;
    left: 0px;
    height: calc(100% - 50px);
    width: calc(100% - 0px);
    min-width: fit-content;
    overflow-y: auto;
    overflow-x: auto;
    padding-right: 25px;
    padding-left: 15px;
}

.listItem {
    display: flex;
    margin-bottom: 5px;
    margin-left: 2px;
    margin-right: 7px;
    margin-top: 25px;
    border: 2px solid #0C9543;
    border-radius: 5px;
    background: white;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 40%);
    flex-direction: column;
}

.listItemHeader {
    background-color: #0C9543;
    color: white;
    padding: 5px 10px 5px 10px;
    font-size: 1.2em;
    width: 100%;
    display: flex;
}

.listItemDetailHolder {
    padding: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
}

.listItemDetailHolder {
}

.listItemDetailDrawing {
    width: 50%;
}

.listItemDetailText {
    /* width: 50%; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    text-align: right;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px solid #0C9543;
    border-radius: 3px;
    padding: 15px;
    box-shadow: 15px 15px 10px 0px rgb(0 0 0 / 40%);
    margin: 25px;
}

    .listItemDetailText div:nth-child(2n) {
        text-align: left;
    }

.listGroup {
}

.listGroupHeader {
}

.listSystem {
}

.listSystemHeader {
}

.listSystemDetails {
}

.listUnitHeader {
}

.boardHolder {
    position: absolute;
    top: 50px;
    left: 300px;
    height: calc(100% - 50px);
    width: calc(100% - 0px);
    padding-right: 25px;
    padding-left: 15px;
}

.boardItem {
    display: flex;
    margin-bottom: 7px;
    margin-left: 2px;
    margin-right: 7px;
    margin-top: 25px;
    border: 2px solid #0C9543;
    border-radius: 5px;
    background: white;
    width: fit-content;
    box-shadow: 2px 2px 2px 2px rgb(0 0 0 / 40%);
    flex-direction: row;
}

.boardItemHeader {
    background-color: #0C9543;
    color: white;
    padding: 5px 10px 5px 10px;
    font-size: 1.2em;
    margin-left: -1px;
}

.boardItemContent {
    width: 1920px;
}

.boardItemDetailHolder {
    padding: 10px;
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    width: fit-content;
    flex-direction: column;
}

.boardItemDetailHolder {
}

.boardItemDetailDrawing {
    width: fit-content;
}

.boardItemDetailText {
    /* width: 50%; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    text-align: right;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px solid #0C9543;
    border-radius: 3px;
    padding: 15px;
    box-shadow: 15px 15px 10px 0px rgb(0 0 0 / 40%);
    margin: 25px;
}

    .boardItemDetailText div:nth-child(2n) {
        text-align: left;
    }

.boardGroup {
}

.boardGroupHeader {
}

.boardSystem {
}

.boardSystemHeader {
}

.boardSystemDetails {
}

.boardUnitHeader {
}

.boardUnitDetails {
}

.boardItemChildren {
    display: flex;
}

.boardBackground {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0);
}

.itemDetailHolder {
}


.itemDetailDrawing {
    width: 50%;
}

.itemDetailText {
    /* width: 50%; */
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    text-align: right;
    font-size: 1.3em;
    font-weight: bold;
    border: 2px solid #0C9543;
    border-radius: 3px;
    padding: 15px;
    box-shadow: 15px 15px 10px 0px rgb(0 0 0 / 40%);
    margin: 25px;
}

    .itemDetailText div:nth-child(2n) {
        text-align: left;
    }

.unitDetails {
}

.boxTagContainer {
    margin: 10px;
}

/*Tabs*/
.boxTabs {
    display: flex;
    margin: 5px;
    width: fit-content;
    /* padding: 5px; */
    background-color: #0C9543;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    user-select: none;
}

.boxTabContent {
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: -7px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    /* min-width: 1450px; */
    max-width: 100%;
}

div#boxTabContentlist1 {
}

.selectedTab {
    background-color: #32c76d !important;
    border: none !important;
}

.tab {
    float: left;
}

.tabLabel {
    position: relative;
    display: block;
    line-height: 29px;
    height: 29px;
    padding: 0 1.618em;
    background: #0C9543;
    color: #fff;
    cursor: pointer;
    top: 0;
    transition: all 0.25s;
    width: 150px;
    text-align: center;
    border-radius: 5px;
    margin: 5px;
}

    .tabLabel:hover {
        background: #31b064;
    }

.tabContent {
    padding: 5px;
    display: grid;
    width: fit-content;
    max-width: 100%;
}

    .tabContent.tempBoxContent {
    }

.tempBoxContent {
    grid-template-columns: 1fr 1fr;
    grid-row-gap: 30px;
}

.tempBoxLocation {
    display: grid;
    width: 200px;
}

.tempBoxTemps {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 250px;
    text-align: right;
    grid-column-gap: 10px;
}

.boxStates {
}

.boxCities {
    width: 200px;
}

.boxPercentile {
}

.tempBoxTempSettings {
    display: grid;
    width: 200px;
}

.constructionBoxContent {
    max-width: 100%;
}

.constructionBoxToggle {
    display: flex;
    grid-column-gap: 10px;
    line-height: 20px;
    font-size: 18px;
    margin-bottom: 10px;
}

.constructionBoxViews {
    max-width: 100%;
    margin-left: 10px;
}

.constructionBoxSimpleView {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 40px;
}

.constructionBoxSimpleDimensions {
    display: grid;
}

.constructionBoxAdvanceSettings {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 200px;
    justify-content: center;
    align-items: center;
    justify-items: center;
    grid-row-gap: 4px;
    margin-bottom: 10px;
}

.constructionBoxAdvanceView {
    display: flex;
    /* grid-auto-columns: 1fr 1fr; */
    /* grid-auto-flow: column; */
    align-items: flex-start;
    /* grid-column-gap: 25px; */
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 100%;
}

.constructionBoxAdvanceDimensions {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
}

    .constructionBoxAdvanceDimensions table {
        text-align: center;
        margin-right: 25px;
        margin-bottom: 25px;
    }

.constructionBoxAdvanceComputed {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 250px;
    padding-top: 25px;
}

.constructionBoxAdvanceImage {
    padding-top: 100px;
    grid-column: span 2;
}

    .constructionBoxAdvanceImage img {
        max-width: 250px;
    }

.prodLoadBoxContent {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-start;
}

.prodBoxProduct {
    display: grid;
    grid-auto-flow: row;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px;
    margin-bottom: 10px;
    margin-right: 10px;
}

.prodBoxTitle {
    font-weight: bold;
    margin-top: -22px;
    background: white;
    width: fit-content;
    padding-left: 3px;
    padding-right: 3px;
}

.columnOfInputs {
    display: grid;
    grid-template-columns: 1fr;
}

.prodBoxProductContainer {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 20px;
}

.prodBoxWeight {
    width: 173px;
    text-align: center;
}

.prodBoxProductDetails {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

    .prodBoxProductDetails span:nth-child(odd) {
        font-weight: bold;
        text-align: right;
    }

    .prodBoxProductDetails span:nth-child(even) {
    }

.prodBoxDetail {
    font-weight: 100 !important;
}

    .prodBoxDetail span {
        font-weight: 100 !important;
    }

.prodBoxProductMessage {
    color: rgb(173 173 173);
    font-size: 12px;
    padding: 7px;
    margin-bottom: -17px;
}

.miscLoadBoxContent {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 25px;
}

.miscBoxInfiltration {
    width: 180px;
}

    .miscBoxInfiltration input {
        width: 175px;
    }

.miscBoxInfiltrationAshraeUsageFactor {
    width: 175px;
}

.miscBoxInfiltrationOther {
    width: 180px;
}

    .miscBoxInfiltrationOther input {
        width: 175px;
    }

.summaryBoxContent {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 25px;
}

.summaryBoxLoadContainer {
}

.summaryBoxLoads {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 1px;
    grid-template-columns: 1fr;
    grid-column-gap: 5px;
}

    .summaryBoxLoads div:nth-child(even) {
        text-align: center;
    }

    .summaryBoxLoads div:nth-child(odd) {
        font-weight: bold;
    }

.titledGroupContainer {
    display: grid;
    grid-auto-flow: row;
    border: 1px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    padding: 10px;
    min-width: 500px;
    /*max-width:677px;*/
}

.titledGroupTitle {
    font-weight: bold;
    margin-top: -22px;
    background: white;
    width: fit-content;
    padding-left: 3px;
    padding-right: 3px;
}

.titledGroupContent {
}

.wideSelect {
    width: 147px;
}

.Pending{
    background-color:darkgoldenrod;
}

.Complete{
    background-color:green;
}

.Delayed{
    background-color:red;
}

.currentStatus {
    height: 40px;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    line-height: inherit;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: default;
}

.taskButton {
    border: none;
    background-color: gray;
    color: white;
    width: 160px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: default;
}

.smallButton {
    border: none;
    background-color: #23AE58;
    color: white;
    width: 173px;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
}

    .smallButton:hover {
        background-color: #32c76d;
    }

    .smallButton:active {
        background-color: #0C9543;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.addButton {
    border: none;
    background-color: #23AE58;
    color: white;
    width: 125px;
    height: 28px;
    line-height: 30px;
    font-size: 0.7em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    margin-left: auto;
}

    .addButton:hover {
        background-color: #15a34e;
    }

    .addButton:active {
        background-color: #159a4a;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.removeButton {
    border: none;
    /*background-color: #23AE58;*/
    background-color: red;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    margin-left: 5px;
    margin-right: -5px;
}

    .removeButton:hover {
        /*background-color: #15a34e;*/
        background-color:darkred;
    }

    .removeButton:active {
        /*background-color: #159a4a;*/
        background-color:crimson;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.revisionButton {
    border: none;
    /*background-color: #23AE58;*/
    background-color: #23ADD7;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    /*    margin-left: 5px;
    margin-right: -5px;*/
}
.viewButton {
    border: none;
    /*background-color: #23AE58;*/
    background-color: #F28C28;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    /*    margin-left: 5px;
    margin-right: -5px;*/
}
.selectButton {
    border: none;
    /*background-color: #23AE58;*/
    background-color: #23ae58;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    /*    margin-left: 5px;
    margin-right: -5px;*/
}

.deleteButton {
    border: none;
    /*background-color: #23AE58;*/
    background-color: red;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
/*    margin-left: 5px;
    margin-right: -5px;*/
}

    .deleteButton:hover {
        /*background-color: #15a34e;*/
        background-color: darkred;
    }

    .deleteButton:active {
        /*background-color: #159a4a;*/
        background-color: crimson;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.deleteButtonContact {
    border: none;
    /*background-color: #23AE58;*/
    background-color: red;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    /*    margin-left: 5px;
    margin-right: -5px;*/
}

    .deleteButtonContact:hover {
        /*background-color: #15a34e;*/
        background-color: darkred;
    }

    .deleteButtonContact:active {
        /*background-color: #159a4a;*/
        background-color: crimson;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.deleteButtonUserInfo {
    border: none;
    /*background-color: #23AE58;*/
    background-color: red;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    /*    margin-left: 5px;
    margin-right: -5px;*/
}

    .deleteButtonUserInfo:hover {
        /*background-color: #15a34e;*/
        background-color: darkred;
    }

    .deleteButtonUserInfo:active {
        /*background-color: #159a4a;*/
        background-color: crimson;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

    .moreOptions{
        color:darkred;
        display:none;
    }

.addOptionBtn {
    border: none;
    background-color: #23AE58;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    margin-left: 5px;
    margin-right: -5px;
}

    .addOptionBtn:hover {
        background-color: #15a34e;
    }

    .addOptionBtn:active {
        background-color: #159a4a;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.ucAddOptionBtn {
    border: none;
    background-color: #23AE58;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 30px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    margin-left: 5px;
    margin-right: -5px;
}

    .ucAddOptionBtn:hover {
        background-color: #15a34e;
    }

    .ucAddOptionBtn:active {
        background-color: #159a4a;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.cuCustomOptions {
    display: grid;
    height: 30px;
    grid-auto-flow: column;
    width: 500px;
    grid-column-gap: 0px;
    line-height: 50px;
    align-items: center;
    justify-items: end;
    margin-left: calc(100% - 510px);
    padding-top: 10px;
}

.conCustomOptions {
    display: grid;
    height: 30px;
    grid-auto-flow: column;
    width: 500px;
    grid-column-gap: 0px;
    line-height: 50px;
    align-items: center;
    justify-items: end;
    margin-left: calc(100% - 510px);
    padding-top: 10px;
}

.largeAddButton {
    border: none;
    background-color: #23AE58;
    color: white;
    width: 200px;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    text-align: center;
    margin-left: 20px;
}

    .largeAddButton:hover {
        background-color: #15a34e;
    }

    .largeAddButton:active {
        background-color: #159a4a;
        box-shadow: 0px 0px 0px 0px rgba(0,0,0,0.2);
    }

.addButtonHolder {
    width: 250px;
    height: 100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 10px;
    margin-bottom: 25px;
}

.prodBoxTableOfProductsContainers {
    width: 100%;
    text-align: center;
}


/* Toggle switch */
/* The box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 20px;
}

    /* Hide default HTML checkbox */
    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
    border-radius: 20px;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 10px;
        width: 10px;
        left: 4px;
        bottom: 5px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
        border-radius: 50%;
    }

input:checked + .slider {
    background-color: #0C9543;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
}

.standaloneBoxContainer {
    width: 90%;
    min-height: 550px;
    background-color: white;
    position: relative;
    top: 70px;
    left: 50%;
    transform: translate(-50%, 0%);
    padding: 10px;
    border-radius: 5px;
    box-shadow: 5px 5px 5px 2px rgba(0,0,0,0.2);
    height: fit-content;
}

.cuTagContainer {
    margin: 10px;
    column-span: all;
}

.cuContainer {
    display: grid;
    grid-auto-columns: minmax(677px,1fr) 1fr 1fr;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    margin: 5px;
    padding: 15px;
    max-width: fit-content;
}

.cuTabs {
    display: flex;
    margin: 5px;
    width: fit-content;
    /* padding: 5px; */
    background-color: #0C9543;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    user-select: none;
}

.cuTabContent {
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    margin-top: -7px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    /* min-width: 1450px; */
    max-width: 100%;
}

.conTagContainer {
    margin: 10px;
    column-span: all;
}

.conContainer {
    display: grid;
    grid-auto-columns: minmax(677px,1fr) 1fr 1fr;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    margin: 5px;
    padding: 15px;
    max-width: fit-content;
}

.conTabs {
    display: flex;
    margin: 5px;
    width: fit-content;
    /* padding: 5px; */
    background-color: #0C9543;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    user-select: none;
}

.conTabContent {
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    margin-top: -7px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    /* min-width: 1450px; */
    max-width: 100%;
}

.drawing {
    grid-column: span 2;
    text-align: center;
}

    .drawing img {
        max-width: 100%;
        height: 175px;
    }

.bottomMargin {
    margin-bottom: 15px;
}

.quadColumnTitledGroup {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 5px;
}

.dualColumnTitledGroup {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

.summary {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 1px;
    grid-template-columns: 1fr;
    grid-column-gap: 5px;
}

    .summary div:nth-child(even) {
    }

    .summary div:nth-child(odd) {
    }

.optionGroup {
    grid-column: span 3;
    font-weight: bold;
    text-align: center;
}

.cuUnitCriteria {
    min-height: 240px;
    align-content: flex-start;
}

.cuUnitCriteria select {
    width: 125px;
}

.cuUnitCriteria input:not([type='checkbox']) {
    width: 125px;
}

.cuUnitCriteriaContent {

}

.conUnitCriteria {
    min-height: 240px;
    align-content: flex-start;
}

    .conUnitCriteria select {
        width: 125px;
    }

    .conUnitCriteria input:not([type='checkbox']) {
        width: 125px;
    }

.conUnitCriteriaContent {
}

.fitContentButton {
    border: none;
    background-color: #23AE58;
    color: white;
    border-radius: 5px;
    box-shadow: 2px 2px 3px 0px rgba(0,0,0,0.2);
    cursor: pointer;
    width: fit-content;
    padding-left: 10px;
    padding-right: 10px;
    height: 30px;
}

.cuDesign {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

    .cuDesign label {
        margin-right: 10px;
    }

.cuPerformanceInput {
}

    .cuPerformanceInput input {
        width: 100px;
    }

    .cuPerformanceInput select {
        width: 100px;
    }

.cuPerformanceInputDetails {
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
}

.cuUnitDetails {
}

    .cuUnitDetails input {
        padding-left: 5px;
        width: 75px;
    }

.cuCoilDetails {
}

    .cuCoilDetails select:nth-child(odd) {
    }

.cuUnitSelection {
    width: calc(100% - 10px) !important;
}

.ucUnitSelection {
/*    width: calc(100% - 10px) !important;
*/
text-align:left;
text-align-last:left;
}

.cuPricingSummary {
    min-height: 650px;
}


.cuButton {
    height: 30px;
    width: 170px;
    margin-top: 10px;
    line-height: 25px;
}

.conDesign {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
}

    .conDesign label {
        margin-right: 10px;
    }

.conPerformanceInput {
}

    .conPerformanceInput input {
        width: 100px;
    }

    .conPerformanceInput select {
        width: 100px;
    }

.conPerformanceInputDetails {
    grid-template-columns: 1.5fr 1fr 1.5fr 1fr;
}

.conUnitDetails {
}

    .conUnitDetails input {
        padding-left: 5px;
        width: 75px;
    }

.conCoilDetails {
}

    .conCoilDetails select:nth-child(odd) {
    }

.conUnitSelection {
    width: calc(100% - 10px) !important;
}

.conPricingSummary {
    min-height: 650px;
}


.conButton {
    height: 30px;
    width: 170px;
    margin-top: 10px;
    line-height: 25px;
}

.ucContainer {
    display: grid;
    grid-auto-columns: 1.3fr 1fr 1fr;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    border-radius: 5px;
    margin: 5px;
    padding: 15px;
    width: 100%;
}


    .ucContainer select {
        width: 144px;
    }

.ucUnit {
    width: 340px !important;
}

.ucTargetCapacityMinus {
    width: 59px !important;
}

.ucTargetCapacityPlus {
    width: 61px !important;
}

.cuTargetCapacityMinus {
    width: 59px !important;
}

.cuTargetCapacityPlus {
    width: 61px !important;
}

.conTargetCapacityMinus {
    width: 59px !important;
}

.conTargetCapacityPlus {
    width: 61px !important;
}

.modalHolder {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 100;
}

.toolsModalHolder {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 100;
}

.modal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    border-radius: 5px;
    border: 3px solid #0C9543;
    z-index: 101;
    box-sizing: border-box;
    width: 600px;
}

.loadingModal {
    height: fit-content;
    width: 350px;
    height: 180px;
}



.toolsModal {
    display: block;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0,0,0,0.5);
    overflow: hidden; /* prevent scrollbars on background */
}

/*.toolsModal {
    display: block;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    min-height: 100%;
    background-color: rgba(0,0,0,0.5);
    overflow: auto;
}*/

.toolsModal-content {
    background-color: #fff;
    margin: 5% auto;
    box-sizing: border-box;
    transition: width 0.3s ease, height 0.3s ease;
    width: 600px;
/*    height: 400px;
*/    overflow: hidden; /* prevent scrollbars inside modal */
    border-radius: 6px;
    padding: 0; /* remove internal white space */
}

/* Optional: inner wrapper if you still need structured layout inside */
.toolsModal-inner {
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    /*overflow: auto;*/ /* only if you want tab content scrollable */
    /*padding: 20px;*/ /* optional: move padding here if needed */
}

.modalHeader {
    text-align: center;
    font-size: 1.3em;
    background-color: #0C9543;
    color: white;
    width: calc(100% + 4px);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-left: -2px;
    margin-top: -1px;
}

.modalContent {
    padding: 10px;
    max-height: 500px;
    overflow: auto;
}

.genericMessageModal {
    width: 350px;
    height: 180px;
}

.genericMessageHeader {
    text-align: center;
    font-size: 1.3em;
    background-color: #0C9543;
    color: white;
    width: calc(100% + 4px);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-left: -2px;
    margin-top: -1px;
    height: 32px;
}



.loadingModalContent {
    color: black !important;
    height: calc(200px - 37px);
    overflow: hidden;
}

.genericMessageModalContent {
    color: black !important;
    height: calc(180px - 45px);
    overflow: hidden;
    padding: 10px;
    max-height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.genericLoadingModalMessage {
    color: black !important;
    text-align: center;
}

.genericLoadingModalLoader {
    height: 80px !important;
}

    .genericLoadingModalLoader img {
        height: 150px;
        margin-top: -27px;
    }

    .toolsModalHeader {
        text-align: center;
        font-size: 1.3em;
        background-color: #0C9543;
        color: white;
        width: calc(100% + 4px);
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        margin-left: -2px;
        margin-top: -1px;
    }

.toolsModalContent {
    padding: 10px;
/*    max-height: 500px;
*/    overflow: auto;
}

.tallModal {
    min-height: 250px;
}

.toolsModalContent > div {
    border-radius: 5px;
    color: white;
    text-align: center;
    width: 100%;
    height: 80px;
    line-height: 40px;
    margin-bottom: 10px;
    cursor: pointer;
}

    .modalContent > div {
        border-radius: 5px;
        color: white;
        text-align: center;
        width: 100%;
        height: 40px;
        line-height: 40px;
        margin-bottom: 10px;
        cursor: pointer;
    }

.toolsModalContent > div {
    border-radius: 5px;
    color: white;
    text-align: center;
    width: 100%;
    height: 80px;
    line-height: 40px;
    margin-bottom: 10px;
    cursor: pointer;
}

.pricingSummary {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 1px;
    grid-template-rows: 1fr 14fr 1fr 2fr;
    grid-column-gap: 5px;
    vertical-align: text-top;
}

    .pricingSummary div > * {
        float: right;
    }

.cuListPriceContainer {
    height: 25px;
}

.cuUnitQuantityContainer {
    margin-top: 50px;
    padding-top: 0px;
    height: 25px;
}

    .cuUnitQuantityContainer input {
        width: 80px;
    }

.cuOptions {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: 1fr 10fr 2fr;
    text-align: left;
    margin-bottom: 0px;
    overflow: auto;
    height: 450px;
    width: 102%;
}

    .cuOptions > * {
    }

    .cuOptions input:not([type='checkbox']) {
        width: 50px;
    }

.cuFinalPriceContainer {
    margin-top: 20px;
    height: 50px;
    font-size: 1.1em;
}

.conListPriceContainer {
    height: 25px;
}

.conUnitQuantityContainer {
    margin-top: 50px;
    padding-top: 0px;
    height: 25px;
}

    .conUnitQuantityContainer input {
        width: 80px;
    }

.conOptions {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: 1fr 10fr 2fr;
    text-align: left;
    margin-bottom: 0px;
    overflow: auto;
    height: 450px;
    width: 102%;
}

    .conOptions > * {
    }

    .conOptions input:not([type='checkbox']) {
        width: 50px;
    }

.conFinalPriceContainer {
    padding-top: 20px;
    height: 50px;
    font-size: 1.1em;
}

.ucFindUnitsContainer {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
}

    .ucFindUnitsContainer input {
        width: 144px;
        height: 30px;
    }

.cuFindUnitsContainer {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
}

    .cuFindUnitsContainer input {
        width: 144px;
        height: 30px;
    }

.conFindUnitsContainer {
    text-align: left;
    padding-top: 20px;
    padding-bottom: 10px;
}

    .conFindUnitsContainer input {
        width: 144px;
        height: 30px;
    }

.ucUnitCoolerListContainer {
    grid-column: span 2 / auto;
}

.ucUnitCoolerList {
   height: 500px;
   overflow: auto;
}

.cuListContainer {
    grid-column: span 2 / auto;
}

.conListContainer {
    grid-column: span 2 / auto;
}

.ucPricingSummary {
    min-height: 480px;
}

.ucListPriceContainer {
    height: 25px;
}

.loadContactButton{
    margin-right:5px;
    margin-left:5px;
}

.saveContactButton {
    margin-right: 5px;
    margin-left: 5px;
}

.saveBtn {

}

.REVsaveBtn {
    height: 25px !important;
    margin-bottom: 2px !important;
}

.ucOptions {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: 1fr 10fr 2fr;
    text-align: left;
    margin-bottom: 0px;
    overflow: auto;
    height: 425px;
    width: 102%;
}

    .ucOptions > * {
    }

    .ucOptions input:not([type='checkbox']) {
        width: 75px;
    }

.ucUnitQuantityContainer {
    margin-top: 30px;
    padding-top: 10px;
    height: 25px;
}

    .ucUnitQuantityContainer input {
        width: 80px;
    }

.ucFinalPriceContainer {
    padding-top: 20px;
    height: 50px;
    font-size: 1.1em;
}

.newProjectName {
    width: 100%;
    height: 50px;
    line-height: 50px;
    font-size: 1.5em;
    text-align: center;
    border: 1px solid #0C9543;
    border-radius: 5px;
    margin-bottom: 15px;
}

.newProjectSeperator {
    height: 10px !important;
}

.userLoadProjectSpinner {
    margin-left: auto;
    margin-right: auto;
}

.userLoadSpinnerContainer {
    width: 100%;
    text-align: center;
    height: fit-content;
}

.cuSelectionTypeContainer {
    text-align: left;
    grid-column: 1 / span 4;
    margin-bottom: 30px;
    line-height: 20px;
}

    .cuSelectionTypeContainer label {
        margin-left: 10px;
        margin-right: 10px;
    }

.ucSelectionTypeContainer {
    text-align: left;
    grid-column: 1 / span 4;
    margin-bottom: 30px;
    line-height: 20px;
}

    .ucSelectionTypeContainer label {
        margin-left: 10px;
        margin-right: 10px;
    }

.conSelectionTypeContainer {
    text-align: left;
    grid-column: 1 / span 4;
    margin-bottom: 30px;
    line-height: 20px;
}

    .conSelectionTypeContainer label {
        margin-left: 10px;
        margin-right: 10px;
    }

.sysBalanceContainer {
    padding: 20px;
    width: 1200px;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 25px;
}

.addChildMessage {
    text-align: center;
    color: black !important;
}

.smallLoader {
    margin-top: -15px;
    margin-left: 59px;
    margin-bottom: 20px;
    height: 50px;
}

.cuRatingLoader {
    margin-top: 0px !important;
    margin-bottom: -17px !important;
    margin-right: 55px !important;
}

.cuGenerateReportLoader {
    margin-top: 3px;
    margin-bottom: -20px;
}

.cuFindUnitsLoader {
    height: 50px;
    margin-top: -10px;
    margin-bottom: -20px;
    margin-left: 40px;
    margin-right: 45px;
}

.cuOccupancyContainer {
    display: grid;
    grid-auto-flow: column;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

.conRatingLoader {
    margin-top: 0px !important;
    margin-left: 35px !important;
}

.conFindUnitsLoader {
    height: 50px;
    margin-top: -10px;
    margin-bottom: -20px;
    margin-left: 40px;
    margin-right: 45px;
}

.conOccupancyContainer {
    display: grid;
    grid-auto-flow: column;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

.ucOccupancyContainer {
    display: grid;
    grid-auto-flow: column;
    grid-row-gap: 5px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

.comingSoon {
    font-size: 1.1em;
    font-weight: bold;
    text-align: center;
}

.sysBalance {
    width: 500px;
}

.sysBalanceLoader {
    height: 50px;
    margin-top: -13px;
    margin-bottom: 0px;
    margin-left: 0px;
    margin-right: 45px;
    float: right;
}

.sysBalanceContent {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 1px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
    text-align: left;
}

    .sysBalanceContent div:nth-child(even) {
        
    }
    
    .sysBalanceContent div:nth-child(odd) {
        
    }

    .sysBalance div {
        
        }

.sysBalanceResults {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 1px;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 5px;
}

    .sysBalanceResults div:nth-child(even) {
        /* padding-left: 60px; */
    }

    .sysBalanceResults div:nth-child(odd) {
        /* font-weight: bold; */
    }

.sysBalanceButton {
    margin-top: 15px;
    float: right;
}

.sysBalanceReportButton {
    margin-top: 15px;
    float: right;
}

.projectDetailsContainer {
    min-width: 325px !important;
    width: 325px;
}

.projectProposalNotes {
    width: 300px;
    height: 100px;
    padding: 10px;
    font-family: Arial, sans-serif;
    font-size: 14px;
    white-space: pre-wrap; /* Preserve newlines */
    overflow-y: auto; /* Allow vertical scrolling */
    border: 1px solid #ccc;
    border-radius: 4px;
}

.projectDetailsContent {

}

    .projectDetailsContent div:nth-child(even) {
        padding-left: 25px;
        margin-bottom: 10px;
    }

    .projectDetailsContent input[type=text] {
        width: 250px;
        text-align: left;
        padding-left: 10px;
        overflow: auto;
        white-space:pre-wrap;
        word-wrap:break-word;
    }
    .projectDetailsContent textarea {
        width: 250px;
        text-align: left;
        padding-left: 10px;
    }

.projectContainer {
    /*padding: 20px;
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 25px;*/
}

/*Tabs*/
.projectTabs {
    display: flex;
    margin: 5px;
    width: fit-content;
    /* padding: 5px; */
    background-color: #0C9543;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
    user-select: none;
}

.projectTabContent {
    min-height: 303px;
    border: 2px solid rgba(0,0,0,0.1);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: -7px;
    margin-left: 5px;
    margin-right: 5px;
    padding: 10px;
    /* min-width: 1450px; */
    max-width: 100%;
}

.projectInfoContent {
    padding: 20px;
    display: grid;
    grid-auto-flow: column;
    justify-content: start;
    grid-column-gap: 25px;
}

.projectPricingTableContainer {
    width: 80%;
}

.projectPricingTable {
    width: 1500px;
}

.projectOptionsContainer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-left: 15px;
    padding-right: 15px;
}

    .projectOptionsContainer div:nth-child(even) {
        text-align: right;
    }

    .projectOptionsContainer label {

    }

    .projectOptionsContainer input[type="checkbox"] {
        margin-right: 4px;
        transform: scale(1.1);
    }

.projectBadgeHolder {
    display: inline-flex;
    gap: 6px;
    margin-left: 8px;
    vertical-align: middle;
}

.projectRevBadge {
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 12px;
    background-color: #23ADD7; 
    height: 16px;
}

.projectVerBadge {
    padding: 2px 8px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: bold;
    color: white;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 12px;
    background-color: #F28C28;
    height: 16px;
}

.feedbackContainer {
    position: fixed;
    bottom: -1px;
    right: 30px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 2px 1px 3px 2px rgba(0, 0, 0, 0.4);
    padding: 0px;
    z-index: 9999;
    width: 400px;

}

.feedbackHeader {
    font-size: 1.2em;
    font-weight: bold;
    /*background-color: #0C9543;*/
    background: linear-gradient(90deg,#009E4F,#009E4F,#228EC2,#009E4F,#009E4F);
    background-size: 200% 200%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: -1px;
    margin-left: -1px;
    width: calc(100% + 2px);
    cursor: pointer;
    user-select: none;
    color: white;
    text-align: center;
    height: 30px;
    line-height: 30px;
    -webkit-animation: feedbackGradient 30s ease infinite;
    -moz-animation: feedbackGradient 30s ease infinite;
    animation: feedbackGradient 30s ease infinite;
}

@-webkit-keyframes feedbackGradient {
    0% {
        background-position: 10% 0%;
    }

    2.5% {
        background-position: 91% 100%;
    }

    5% {
        background-position: 50% 50%;
    }

    95% {
        background-position: 50% 50%;
    }

    97.5% {
        background-position: 91% 100%;
    }

    100% {
        background-position: 10% 0%;
    }
}

@-moz-keyframes feedbackGradient {
    0% {
        background-position: 10% 0%;
    }

    2.5% {
        background-position: 91% 100%;
    }

    5% {
        background-position: 50% 50%;
    }

    95% {
        background-position: 50% 50%;
    }

    97.5% {
        background-position: 91% 100%;
    }

    100% {
        background-position: 10% 0%;
    }
}

@keyframes feedbackGradient {
    0% {
        background-position: 10% 0%;
    }

    2.5% {
        background-position: 91% 100%;
    }

    5% {
        background-position: 50% 50%;
    }

    95% {
        background-position: 50% 50%;
    }

    97.5% {
        background-position: 91% 100%;
    }

    100% {
        background-position: 10% 0%;
    }
}

    .feedbackHeader div {
        display: inline-block;
    }

.feedbackTitle {
    font-size: 1em;
}

.feedbackArrow {
    padding-left: 10px;
    padding-right: 10px;
}

.feedbackContent {
    margin-bottom: 10px;
    padding: 10px;
    display: none;
}

.feedbackMessage {
    padding: 5px;
    width: 100%;
    resize: vertical;
    text-align: center;
    margin-bottom: 10px;
}

.inProgress {
    padding: 5px;
    width: 100%;
    resize: vertical;
    text-align: center;
    margin-bottom: 10px;
}

.feedbackInput {
    margin-bottom: 10px;
}

.feedbackTextArea {
    width: 100%;
    height: 150px;
    resize: none;
}

.feedbackButtonHolder {
    text-align: right;
}

.feedbackSendButton {
    background-color: #0C9543;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 5px 10px;
    cursor: pointer;
    width: 125px;
}

.feedbackSendButton:hover {
    background-color: #228EC2;
}

.expandCollapse {
    cursor: pointer;
    user-select: none;
    margin-right: 10px;
}

.cuOptionCheckbox {
    margin-right: 12.5px;
}

.conOptionCheckbox {
    margin-right: 12.5px;
}

.ucOptionCheckbox {
    margin-right: 12.5px;
}

.connectEnable {
    width: 155px;
    min-width: 155px;
}

.connectContainer {
    padding: 20px;
    width: 1200px;
    display: grid;
    /*grid-auto-flow: column;*/
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 25px;
}

.connectEnableContent {
    display: grid;
    grid-auto-flow: row;
    grid-row-gap: 1px;
    grid-column-gap: 5px;
    text-align: center;
    padding-top: 5px;
    width: 100%;
}

.connectEquipmentContainer {
    /*margin-left: 20px;*/
    width: 1000px;
    /*grid-auto-flow: column;*/
}

.connectPricingContainer {
    height: 325px;
}

.connectPriceContent {

}

/* ===== Table Wrapper for Scroll ===== */
.tableWrapper {
    max-height: 670px;
    overflow-y: auto;
    position: relative;
    border: 1px solid #ccc;
    margin-top: 10px;
    margin-right:10px;
    margin-left:10px;
}

/* ===== Header Row Positioned Absolutely ===== */
#loadProjectModal .modalContent thead th {
    position: absolute;
    top: 0;
    background: #fff;
    z-index: 2;
    height: 40px; /* or whatever height your header needs */
    line-height: 40px;
    border: 1px solid #ccc;
    padding: 8px;
    text-align: left;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== Push Table Content Down So It Doesn't Overlap ===== */
#loadProjectModal .modalContent tbody {
    display: table-row-group;
    padding-top: 40px; /* doesn't work on tbody — see below */
}

/*  Fix: Use table margin instead */
#loadProjectModal .modalContent table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    margin-top: 40px; /* this is the key! */
}

/* ===== Table Cells ===== */
#loadProjectModal .modalContent th,
#loadProjectModal .modalContent td {
    border: 1px solid #ccc;
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

    /* Project name column wraps */
    #loadProjectModal .modalContent td.projectName {
        white-space: normal;
        word-wrap: break-word;
    }

.tableWrapper::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/*table {
    width: 100%;
    border-collapse: collapse;*/ /* remove double borders */
    /*table-layout: fixed;
}*/

/* Button styling */
.projectListItem.smallButton {
    width: 100%;
    height: 30px;
    border: none;
    cursor: pointer;
}

.deleteButton {
    height: 30px;
    line-height: 30px;
    display: inline-block;
    text-align: center;
    cursor: pointer;
    font-size: 1.2rem;
}

#projectTable td {
    border: 1px solid #e0e0e0; /* Light gray border */
    padding: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
   
}

    /* Project name cell still wraps nicely */
    #projectTable td.projectName {
        white-space: normal;
        word-wrap: break-word;
    }


#loadProjectModal .modalContent #projectTable td {
    border: 1px solid #e0e0e0;
}

.tableHeader{
    padding-right:12px;
}

/* Indent revision rows visually */
#projectTable #projectTableBody .revisionRow .projectName {
    padding-left: 2em;
    font-style: italic;
    color: #555;
}

.viewOnly {
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 50px;
    line-height: 50px;
    top: -5px;
    position: relative;
    font-weight: bold;
    text-shadow: -1px -1px 0 black, 1px -1px 0 black, -1px 1px 0 black, 1px 1px 0 black;
    color: #F28C28;
}

.versionDisplayContainer {
    text-align: center;
    margin-top: -30px;
    margin-bottom: 5px;
    color: rgba(0, 0, 0, 0.5)
}

/* Right-side instructions modal (inside existing modalHolder) */
.instructionsSidebar {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: #ffffff;
    box-shadow: -10px 0 8px rgba(0, 0, 0, 0.2);
    padding: 20px;
    box-sizing: border-box;
    overflow-y: auto;
    z-index: 10;
}

/* Instructions modal header */
.instructionsHeader {
    font-size: 1.6em;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Content inside the instructions panel */
.instructionsContent {
    font-size: 1em;
    line-height: 1.6;
}

/* Close (X) button */
.instructionsClose {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: red;
    color: white;
    width: 30px;
    height: 30px;
    font-size: 1.2em;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    border-radius: 4px; /* Make it slightly rounded, or set to 0 for sharp corners */
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

input:disabled {
    color: gray; /* Text color */
    background-color: #f0f0f0; /* Background color */
    border: 1px solid #ccc; /* Optional: override border style */
}

select:disabled {
    color: gray; /* Text color */
    background-color: #f0f0f0; /* Background color */
    border: 1px solid #ccc; /* Optional: override border style */
}

.tabulator .tabulator-header {
    position: sticky;
    top: 0;
    z-index: 10;
    background: white;
    
}

#projectTable .tabulator-tableholder {
/*    overflow-y: hidden !important;
*/}
    #projectTable .tabulator-tableholder::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

.deleteButton[disabled] {
    opacity: 0.4;
    cursor: not-allowed;
}



/*.changeLogContainer {
    position: fixed;
    bottom: -1px;
    left: 30px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    box-shadow: 2px 1px 3px 2px rgba(0, 0, 0, 0.4);
    padding: 0px;
    z-index: 9999;
    width: 400px;
}

.changeLogHeader {
    font-size: 1.2em;
    font-weight: bold;*/
    /*background-color: #0C9543;*/
    /*background: linear-gradient(90deg,#009E4F,#009E4F,#228EC2,#009E4F,#009E4F);
    background-size: 200% 200%;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    margin-top: -1px;
    margin-left: -1px;
    width: calc(100% + 2px);
    cursor: pointer;
    user-select: none;
    color: white;
    text-align: center;
    height: 30px;
    line-height: 30px;
    -webkit-animation: changeLogGradient 30s ease infinite;
    -moz-animation: changeLogGradient 30s ease infinite;
    animation: changeLogGradient 30s ease infinite;
}

@-webkit-keyframes changeLogGradient {
    0% {
        background-position: 90% 0%;
    }

    2.5% {
        background-position: 9% 100%;
    }

    5% {
        background-position: 50% 50%;
    }

    95% {
        background-position: 50% 50%;
    }

    97.5% {
        background-position: 9% 100%;
    }

    100% {
        background-position: 90% 0%;
    }
}

@-moz-keyframes changeLogGradient {
    0% {
        background-position: 90% 0%;
    }

    2.5% {
        background-position: 9% 100%;
    }

    5% {
        background-position: 50% 50%;
    }

    95% {
        background-position: 50% 50%;
    }

    97.5% {
        background-position: 9% 100%;
    }

    100% {
        background-position: 90% 0%;
    }
}

@keyframes changeLogGradient {
    0% {
        background-position: 90% 0%;
    }

    2.5% {
        background-position: 9% 100%;
    }

    5% {
        background-position: 50% 50%;
    }

    95% {
        background-position: 50% 50%;
    }

    97.5% {
        background-position: 9% 100%;
    }

    100% {
        background-position: 90% 0%;
    }
}

.changeLogHeader div {
    display: inline-block;
}

.changeLogTitle {
    font-size: 1em;
}

.changeLogArrow {
    padding-left: 10px;
    padding-right: 10px;
}

.changeLogContent {
    margin-bottom: 10px;
    padding: 10px;
    display: none;
}*/



/*.changeLogTextArea {
    width: 100%;
    height: 150px;
    resize: none;
}*/

.save-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background-color: #4CAF50; /* Matches green accent in your project */
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

    .save-button:hover {
        background-color: #45a049; /* Slightly darker on hover */
        box-shadow: 0 3px 6px rgba(0,0,0,0.25);
    }

/* Make the entire toggle section align left in a clean vertical stack */
.toggle-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
    margin-bottom: 1.5em;
}

/* Each line becomes: label + options toggle */
.toggle-line {
    display: flex;
    align-items: center;
    gap: 1em;
}

/* Reuse your existing toggle-container but make spacing clean */
.toggle-container {
    display: flex;
    align-items: center;
    gap: 0.5em;
}

/* Improve label consistency */
.toggle-line .input-label {
    font-weight: 600;
    margin-right: 0.5em;
}

/* Force toggle text to be black */
.toggle-row .input-label,
.toggle-row .toggle-label {
    color: black;
}

/* Make everything inside the modal align cleanly to the left */
.alacarte-list {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    margin-top: 1em;
}

    /* Force checkboxes + buttons to align left */
    .alacarte-list input[type="checkbox"],
    .alacarte-list .alaCartePrint {
        margin-left: 0;
        margin-right: auto;
        display: block;
    }

    /* Slight spacing improvement for readability */
    .alacarte-list input[type="checkbox"] {
        transform: scale(1.1);
    }



/* Make the header taller to fit close button */
.modalHeader--tall {
    position: relative;
    padding-right: 40px; /* so text doesn't collide with X */
    min-height: 50px;
    display: flex;
    align-items: center;
}

/* Close button reused from your inline code */
.modalCloseButton {
    border: none;
    background-color: red;
    color: white;
    width: 30px;
    height: 28px;
    line-height: 28px;
    font-size: 1.2em;
    border-radius: 5px;
    box-shadow: 2px 2px 3px rgba(0,0,0,0.2);
    cursor: pointer;
    position: absolute;
    right: 5px;
    top: 5px;
    text-align: center;
}

/* Checkbox rows */
.checkboxGroup {
    padding-left: 15px; /* padding from modal edge */
    margin-top: 10px;
}

.checkboxRow {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: black;
    font-size: 1.1em;
}

    /* Ensure checkbox text is black */
    .checkboxRow input + span,
    .checkboxRow {
        color: black !important;
    }

/* Make generate button wider with padding */
.alaCarteButton {
    display: block;
    margin-left: 15px;
    margin-top: 15px;
    padding: 8px 14px;
    width: auto; /* enough to fit text */
}
