/*
LIST:
0.1 LOADING SCREENS
0. SIDEBARS
1. TOOL HOME
2. TOOL CONTACT US
3. TOOL PROGRESS STEPS
4. TOOL PROGRESS STEP 1
5. TOOL RESULTS
6. FAQ DETAILS
7. CONTACT US BUTTON
*/


/* 0.1. LOADING SCREENS */
.aj-loading-screen-text-default {
    color: rgb(210, 210, 210);
    font-weight: 400;
    font-size: 16px
}

.aj-loading-screen-loader-container {
    background-color: rgb(255, 255, 255) !important;
    margin-top: 64px;
    opacity: 1 !important;
}


@media (max-width: 599.5px) {
    .df-loader {
        flex-direction: column; /* Switch to column layout for text */
        align-items: center; /* Center align items for column layout */
    }

    .aj-loading-screen-text-default {
        text-align: center; /* Center text for better appearance */
        margin-bottom: 10px; /* Add some space between the texts */
    }

    .aj-loading-screen-loader-container {
        margin-top: 52px;
    }
}


/* 0. SIDEBARS*/
.aj-right-sidebar {
    width: 240px;
    background-clip: padding-box;
    background-color: rgb(255, 255, 255);
    border-radius: 2px;
    box-sizing: border-box;
    font-size: 14px;
    padding: 24px;
    text-align: left;
    color: rgb(48, 48, 48);
    font-family: "myriad-pro", "Source Sans Pro", sans-serif, system-ui;
    height: calc(100vh - 64px); /* Full height */
    position: fixed !important; /* Fixed Sidebar (stay in place on scroll) */
    top: 64px !important;
    right: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    transition: transform 0.3s ease; /* Smooth slide-in effect */
    z-index: 1000; /* Ensure sidebar is above the overlay */
    transform: translateX(100%); /* Hide sidebar by default*/
    border-left: 1px solid #e0e0e0;
    box-shadow: 0px 2px 20px 0px #0000001f;
    z-index: 1800;
}

.aj-right-sidebar.closed {
    transform: translateX(100%); /* Hide sidebar */
}

.aj-right-sidebar.open {
    transform: translateX(0); /* Hide sidebar */
}

@media screen and (max-width: 599.5px) {
    /*    .aj-sidebar-menu-toggle {
            top: 52px;
        !important;
        }*/
    /*    .aj-left-sidebar {
            height: calc(100vh - 52px); !* Full height *!
            position: fixed !important; !* Fixed Sidebar (stay in place on scroll) *!
            top: 52px !important;
            left: 0;

        }*/
    .aj-right-sidebar {
        height: calc(100vh - 52px); /* Full height */
        position: fixed !important; /* Fixed Sidebar (stay in place on scroll) */
        top: 52px !important;
        right: 0;
        z-index: 1800 !important;
    }
}


/* 1. TOOL HOME */
.aj-tool-home-tiles-parent {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px
}

.aj-tool-home-tiles-child {
    padding-left: 15px;
    padding-right: 15px;
    flex: 1 1 auto;
    box-sizing: border-box;
}

.aj-tool-home-tiles-custom-image {
    width: 370px; /* 450 Ensures the image does not exceed the width of its container */
    height: 210px; /* 300 Maintains the aspect ratio by adjusting the height automatically */
}

.aj-tool-home-sub-title {
    font-size: 16px;
    font-weight: 500;
    padding-left: 5px;
    display: inline-block; /* Default display */
}

.aj-tool-home-hero-card-description {
    padding-bottom: 16px;
    padding-top: 16px;
    text-align: justify;
}


/* Mobile styles using media queries */
@media (max-width: 599.5px) {
    /* Adjust the max-width value as needed for your breakpoint */
    .aj-tool-home-tiles-parent {
        flex-direction: column; /* Stack children vertically */
        justify-content: flex-start; /* Align children to the start */
        margin-top: 15px; /* Reduce top margin for mobile */
        margin-bottom: 15px; /* Reduce bottom margin for mobile */
    }

    .aj-tool-home-tiles-child {
        padding-left: 10px; /* Reduce left padding for mobile */
        padding-right: 10px; /* Reduce right padding for mobile */
        flex: 1 1 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */
    }

    .aj-tool-home-tiles-child:last-child {
        margin-bottom: 0; /* Remove margin from the last child to avoid extra space */
    }

    .aj-tool-home-tiles-custom-image {
        max-width: 100%; /* Ensures the image does not exceed the width of its container */
        height: 200px; /* Maintains the aspect ratio by adjusting the height automatically */
        display: block; /* Removes any inline spacing issues */
    }

    .aj-tool-home-sub-title {
        display: block; /* Change to block display for mobile */
        padding-left: 0; /* Remove padding for better alignment */
        margin-top: 0px; /* Add some space between the elements */
    }

    .aj-tool-home-hero-card-description {
        padding-bottom: 8px;
        padding-top: 8px;
    }
}

/* 2. TOOL CONTACT US */
.aj-contact-us-form-container {
    width: 50% !important;
}

.aj-contact-us-form-fieldset-parent-container {
    width: 50% !important;
}

/* Mobile styles using media queries */
@media (max-width: 599.5px) {
    .aj-contact-us-form-container {
        width: 100% !important;
    }

    .aj-contact-us-form-fieldset-parent-container {
        width: 100% !important;
    }
}


/* 3. TOOL PROGRESS STEPS */
.progress-content-container {
    padding: 1rem 3rem;
    width: 100% /* added 1.04.2025 */
}

.progress-steps-control-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 64px;
}

@media screen and (max-width: 599.5px) {
    .float-right {
        float: right !important;
        width: 20% !important;
        max-width: 20% !important;
    }

    .float-left {
        float: left !important;
        width: 20% !important;
        max-width: 20%;
    !important

    }

    .progress-content-container {
        padding: .75rem
    }
}

@media screen and (width > 720px) {
    .float-left {
        position: fixed;
        top: 86px;
        left: 40px;
        background-color: rgba(0, 0, 0, 0) !important;
        min-height: 24px !important;
        padding: 0 !important;
        z-index: 1600 !important;
        border: 1px solid #e0e0e0 !important;
    }

    .prev-button-results-quick-actions {
        background-color: rgba(0, 0, 0, 0) !important;
        min-height: 24px !important;
        padding: 0 !important;
        border: 1px solid #e0e0e0 !important;
    }

    .prev-button-results-quick-actions:hover {
        background-color: #f5f5f7 !important;
    }


    .float-right {
        position: fixed;
        top: 86px;
        right: 80px;
        background-color: rgba(0, 0, 0, 0) !important;
        border: 0 !important;
        min-height: 24px !important;
        padding: 0 !important;
        z-index: 1600 !important;
        border: 1px solid #e0e0e0 !important;
    }
}

.aj-tool-steps-content-parent-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%
}


.aj-tool-steps-content-child-container {
    flex: 1 1 40%
}

.aj-dashboard-inputs {
    position: fixed;
    top: 225px;
    right: auto;
    margin-left: 600px;
    /*max-width: 1608px;*/
    width: 100%;
    height: 470px;
}

.aj-dashboard-inputs-content-1 {
    width: 850px;
    padding-top: 5px
}

.aj-dashboard-inputs-content-2 {
    width: 900px;
    padding-top: 5px
}

.aj-dashboard-inputs-graph-switch {
    display: flex;
    margin-left: 50px;
    margin-top: 20px
}

.aj-dashboard-inputs-graph-switch-label {
    font-size: 16px;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px
}

.aj-dashboard-inputs-graph {
    margin-left: 50px;
}

#input-graph-daily-v1, #input-graph-monthly-v1, #input-graph-monthly-v1-overview, #input-graph-daily-v1-overview {
    max-width: 100% !important; /* Full width of the parent container */
    height: 400px !important; /* Adjust height as needed */
}

@media (max-width: 599.5px) {
    .aj-tool-steps-content-parent-container {
        flex-direction: column; /* Stack children vertically */
        justify-content: flex-start; /* Align children to the start */
    }

    .aj-tool-steps-content-child-container {
        flex: 1 1 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */
    }

    .aj-dashboard-inputs {
        flex: 1 1 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */
        position: static; /* or another desired position */
        top: auto;
        margin-left: 0;
        max-width: 100%; /* or another desired width */
        height: auto; /* or another desired height */
    }

    .aj-dashboard-inputs-content-1 {
        width: auto;
        padding-top: 5px
    }

    .aj-dashboard-inputs-content-2 {
        width: auto;
        padding-top: 5px
    }

    .aj-dashboard-inputs-graph-switch {
        display: flex;
        margin-left: 5px;
        margin-top: 20px
    }

    .aj-dashboard-inputs-graph {
        margin-left: 5px;
    }

    #input-graph-daily-v1, #input-graph-monthly-v1, #input-graph-monthly-v1-overview, #input-graph-daily-v1-overview {
        max-width: 355px !important; /* Full width of the parent container */
        height: 400px !important; /* Adjust height as needed */
    }
}


/* 4. TOOL PROGRESS STEP 1 */
.aj-tool-step-1-content-parent-container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; /* i have changed this to no wrap*/
    justify-content: space-between;
    width: 100%
}

.aj-tool-step-1-content-child-container-1 {
    flex: 1 1 40%
}

.aj-tool-step-1-content-child-container-2 {
    flex: 1 1 60%
}

.aj-tool-dashboard-input-step-1-schematic {
    min-width: 100%;
}

.aj-tool-dashboard-input-step-1-schematic-label {
    /*font-size: 18px !important;*/
    font-weight: 400;
    color: rgb(104, 104, 104);
    padding-left: 45px;
    font-size: 1.2rem !important;
    line-height: 2.0rem !important;
    font-family: myriad-pro, 'Source Sans Pro', sans-serif, system-ui !important;
    letter-spacing: .03em !important;
}


.aj-tool-dashboard-input-step-1-schematic-label-secondary {
    font-size: 1.2rem !important;
    line-height: 2.0rem !important;
    font-weight: 400;
    color: rgb(191, 190, 190);
    font-family: myriad-pro, 'Source Sans Pro', sans-serif, system-ui !important;
    letter-spacing: .03em !important;
    padding-left: 5px
}

@media (max-width: 599.5px) {
    .aj-tool-step-1-content-parent-container {
        flex-direction: column; /* Stack children vertically */
        justify-content: flex-start; /* Align children to the start */
        /* margin-top: 15px; /* Reduce top margin for mobile */
        /* margin-bottom: 15px; /* Reduce bottom margin for mobile */
    }

    .aj-tool-step-1-content-child-container-1 {
        flex: 1 1 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */
    }

    .aj-tool-step-1-content-child-container-2 {
        flex: 1 1 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */
    }

    .aj-tool-dashboard-input-step-1-schematic {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .aj-tool-dashboard-input-step-1-schematic-label {
        font-size: 15px !important;
        font-weight: 700;
        color: rgb(104, 104, 104);
        padding-left: 5px
    }

    .aj-tool-dashboard-input-step-1-schematic-label-secondary {
        font-size: 15px !important;
        font-weight: 600;
        color: rgb(191, 190, 190);
        padding-left: 5px
    }
}

/* tool step mode: system schematics */
@media screen and (max-width: 599.5px) {
    .progress-content-container {
        margin-top: 10px;
    }

    #progress-step-button-container {
        background-color: white;
        height: 50px;
    }
}

/* 5. TOOL RESULTS */
.aj-tool-results-content-parent-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%
}

.aj-tool-results-content-child-container-1 {
    flex: 0 0 35%;
    margin-right: 10px
}

.aj-tool-results-content-child-container-2 {
    flex: 0 0 65%;
    flex-direction: column
}

.aj-tool-results-content-technical-input-placeholder {
    margin: 0;
    padding: 0 5px 5px;
    background-color: transparent;
}

.aj-tool-results-content-section-label {
    color: rgb(104, 104, 104) !important;
    background-color: rgb(244, 244, 244) !important;
    font-size: 18px;
    font-weight: 600;
    padding-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
}

.aj-tool-results-content-technical-table {
    width: 90%;
    margin-top: 6px;
}

.aj-tool-results-content-sub-section-label {
    color: rgb(104, 104, 104);
    font-size: 15px;
    font-weight: 600;
    padding-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px
}

.aj-tool-results-content-sub-section-table {
    width: 90%;
}

.aj-tool-results-content-parent-container-graphs {
    flex: 0 0 100%;
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
}

.aj-tool-results-content-child-container-graphs-1 {
    flex: 0 0 50%;
    margin-right: 10px;
}

.aj-tool-results-content-child-container-graphs-2 {
    flex: 0 0 50%;
    margin-left: 10px;
}

.aj-tool-results-content-parent-container-financials {
    flex: 0 0 100%;
    margin-top: 10px;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: space-between;
}

.aj-tool-results-content-parent-container-financials-label-main {
    flex: 1;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    background-color: rgb(244, 244, 244);
}

.aj-tool-results-content-parent-container-financials-label-main-sub {
    display: flex;
    width: 15%;
}

.aj-tool-results-content-parent-container-financials-label-main-sub-sub {
    color: rgb(104, 104, 104) !important;
    font-size: 18px;
    font-weight: 600;
    padding-left: 10px;
    margin-top: auto;
    margin-bottom: auto;
    margin-right: 10px;
}

.aj-tool-results-content-child-container-financials-owner {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: fit-content;
}

.aj-tool-results-content-child-container-financials-owner-sub-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 270px;
    width: 98%;
}

.aj-tool-results-content-child-container-financials-owner-sub-container-child-1 {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
}

.aj-tool-results-content-child-container-financials-owner-sub-container-child-2 {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
}

.aj-tool-results-content-child-container-financials-consumer {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: fit-content;
}

.aj-tool-results-content-child-container-financials-consumer-sub-container {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 10px;
    margin-bottom: 10px;
    height: 270px;
    width: 98%;
}

.aj-tool-results-content-child-container-financials-consumer-sub-container-child-1 {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
}

.aj-tool-results-content-child-container-financials-consumer-sub-container-child-2 {
    flex: 0 0 50%;
    display: flex;
    flex-direction: row;
}

.aj-tool-results-content-child-container-financials-owner-label {
    flex: 1;
    background-color: rgb(250, 250, 250);
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aj-tool-results-content-child-container-financials-owner-label-sub {
    color: rgb(104, 104, 104) !important;
    font-size: 18px;
    font-weight: 600;
}

.aj-tool-results-content-child-container-financials-consumer-label {
    flex: 1;
    background-color: rgb(250, 250, 250);
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.aj-tool-results-content-child-container-financials-consumer-label-sub {
    color: rgb(104, 104, 104) !important;
    font-size: 18px;
    font-weight: 600;
}

.aj-tool-results-content-financial-label-and-checks {
    display: flex;
    width: 85%;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 5px;
}


@media (max-width: 599.5px) {
    .aj-tool-results-content-parent-container {
        flex-direction: column; /* Stack children vertically */
        justify-content: flex-start; /* Align children to the start */
        /* margin-top: 15px; /* Reduce top margin for mobile */
        /* margin-bottom: 15px; /* Reduce bottom margin for mobile */
    }

    .aj-tool-results-content-parent-container-graphs {
        flex-direction: column; /* Stack children vertically */
        justify-content: flex-start; /* Align children to the start */
    }

    .aj-tool-results-content-child-container-1 {
        flex: 0 0 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */

    }

    .aj-tool-results-content-child-container-2 {
        flex-direction: column;
        flex: 0 0 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        margin-bottom: 15px; /* Add vertical spacing between children */
    }

    . aj-tool-results-content-child-container-graphs {
        /*flex: 1 1 auto; /* Make each child take full width */
        width: calc(100% - 1px); /* Ensure the child fits within the parent's width */
        /*margin-bottom: 15px; /* Add vertical spacing between children */
    }

    .aj-tool-results-content-technical-table {
        width: 100%;
        margin-top: 6px
    }

    .aj-tool-results-content-section-label {
        margin-right: 0;
    }

    .aj-tool-results-content-sub-section-label {
        margin-right: 0;
    }

    .aj-tool-results-content-sub-section-table {
        width: 100%;
    }

    /* new */
    .aj-tool-results-content-child-container-financials-owner-sub-container {
        flex-direction: column;
    }

    .aj-tool-results-content-child-container-financials-consumer-sub-container {
        flex-direction: column;
    }

    .aj-tool-results-content-financial-label-and-checks {
        width: 75%;
    }

}


/* Sidebar */
.aj-fixed-position-sidebar-button {
    position: -webkit-sticky;
    position: fixed;
!important;
    top: 72px;
    left: 0px;
    margin-top: 10px;
    z-index: 1
}

.aj-fixed-position-sidebar-button-supporting-text {
    position: -webkit-sticky;
    position: fixed;
!important;
    top: 72px;
    left: 35px;
    margin-top: 17px;
    color: rgb(72, 72, 72);
    font-weight: 600;
    font-size: 16px;
    z-index: 1
}

.aj-sidebar-menu {
    height: calc(100vh - 73px - 64px);
    width: 170px;
    top: 72px !important;
    /*background-color:rgb(104, 104, 104);*/
    background-color: transparent;
    position: fixed !important;
    z-index: 1;
    overflow: auto
}

.aj-sidebar-animate-left {
    position: relative;
    animation: animateleft 0.4s
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 0
    }
    to {
        left: 0;
        opacity: 1
    }
}

.blink-text {
    animation: blinker 1s linear infinite;
}

@keyframes blinker {
    50% {
        opacity: 0;
    }
}

.supply-primary-secondary {
    stroke-width: 3;
    stroke-dasharray: 20px;
    animation: dashSupplyPrimarySecondary 200s linear infinite;
}

@keyframes dashSupplyPrimarySecondary {
    to {
        stroke-dashoffset: -10000;
    }
}

.return-primary-secondary {
    stroke-width: 3;
    stroke-dasharray: 20px;
    animation: dashReturnPrimarySecondary 200s linear infinite;
}

@keyframes dashReturnPrimarySecondary {
    to {
        stroke-dashoffset: 10000;
    }
}

/* 6. FAQ DETAILS */
.aj-faq-details-div {
    max-width: 900px;
}

.aj-faq-parent-container {
    max-width: 1100px;
}

@media (max-width: 1000px) {
    .aj-faq-details-div {
        max-width: 100%;
    }

    .aj-faq-parent-container {
        max-width: 100%;
    }
}

/* 7. SUPPORT MENU CIRCLE BUTTONS */
.aj-support-menu-circle-button {
    position: fixed;
    bottom: 16px;
    right: 10px;
    background-color: rgb(226, 0, 15);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline from link */
    z-index: 1000; /* Ensure the button is on top */
    cursor: pointer;
    box-shadow: rgba(215, 25, 32, 0.4) 0px 8px 24px 0px, rgba(215, 25, 32, 0.047) 0px 0px 0px 5.3474px;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(215, 25, 32, 0.4);
    }
    50% {
        box-shadow: 0 8px 24px rgba(215, 25, 32, 0.4), 0 0 0 12px rgba(215, 25, 32, 0.1);
    }
}

.aj-support-menu-circle-button:hover {
    background-color: rgb(182, 0, 15); /* Darker shade on hover */
}

.aj-support-menu-circle-button-tooltip {
    line-height: 20px;
    font-size: 16px;
    height: 50px;
    visibility: hidden;
    width: 180px;
    background-color: rgb(255, 255, 255);
    color: rgb(48, 48, 48);
    text-align: center;
    border-radius: 5px;
    padding: 4px 2px;
    position: fixed;
    bottom: calc(10px);
    right: calc(180px / 2 + 10px + 50px);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aj-support-menu-circle-button:hover .aj-support-menu-circle-button-tooltip {
    visibility: visible;
    opacity: 1;
}

.aj-contact-button {
    position: fixed;
    bottom: calc(16px + 50px);
    right: 10px;
    background-color: rgb(191, 190, 190);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline from link */
    z-index: 1000; /* Ensure the button is on top */
    cursor: pointer;
}

.aj-contact-button:hover {
    background-color: rgb(150, 150, 150); /* Darker shade on hover */
}

.aj-contact-button-tooltip {
    line-height: 20px;
    font-size: 16px;
    height: 50px;
    visibility: hidden;
    width: 220px;
    background-color: rgb(255, 255, 255);
    color: rgb(48, 48, 48);
    text-align: center;
    border-radius: 5px;
    padding: 4px 2px;
    position: fixed;
    bottom: calc(16px + 200px);
    right: calc(110px + 10px);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aj-contact-button:hover .aj-contact-button-tooltip {
    visibility: visible;
    opacity: 1;
}

.aj-tool-guide-button {
    position: fixed;
    bottom: calc(16px + 150px);
    right: 10px;
    background-color: rgb(191, 190, 190);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline from link */
    z-index: 1000; /* Ensure the button is on top */
    cursor: pointer;
}

.aj-tool-guide-button:hover {
    background-color: rgb(150, 150, 150); /* Darker shade on hover */
}

.aj-tool-guide-button-tooltip {
    line-height: 20px;
    font-size: 16px;
    height: 45px;
    visibility: hidden;
    width: 160px;
    background-color: rgb(255, 255, 255);
    color: rgb(48, 48, 48);
    text-align: center;
    padding: 4px 2px;
    position: fixed;
    bottom: calc(16px + 200px);
    right: calc(80px + 10px);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aj-tool-guide-button:hover .aj-tool-guide-button-tooltip {
    visibility: visible;
    opacity: 1;
}

.aj-tool-video-button {
    position: fixed;
    bottom: calc(16px + 100px);
    right: 10px;
    background-color: rgb(191, 190, 190);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%; /* Make it round */
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline from link */
    z-index: 1000; /* Ensure the button is on top */
    cursor: pointer;
}

.aj-tool-video-button:hover {
    background-color: rgb(150, 150, 150); /* Darker shade on hover */
}

.aj-tool-video-button-tooltip {
    line-height: 20px;
    font-size: 16px;
    height: 45px;
    visibility: hidden;
    width: 160px;
    background-color: rgb(255, 255, 255);
    color: rgb(48, 48, 48);
    text-align: center;
    padding: 4px 2px;
    position: fixed;
    bottom: calc(16px + 200px);
    right: calc(80px + 10px);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 25px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.aj-tool-video-button:hover .aj-tool-video-button-tooltip {
    visibility: visible;
    opacity: 1;
}

.aj-questions-label-font {
    color: rgb(104, 104, 104) !important;
    font-weight: 400 !important;
    font-size: 1.0rem !important;
    line-height: 1.5rem !important;
    font-family: myriad-pro, 'Source Sans Pro', sans-serif, system-ui !important;
    letter-spacing: .03em !important;
}

/* 8. RIGHT SIDE MENU CIRCLE BUTTONS */
.aj-right-side-menu-circle-button {
    position: fixed;
    top: 16px;
    right: 10px;
    background-color: rgb(191, 190, 190);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%; /* Make it round */
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
    text-decoration: none; /* Remove underline from link */
    z-index: 1000; /* Ensure the button is on top */
    cursor: pointer;
}

.aj-right-side-menu-circle-button:hover {
    background-color: rgb(226, 0, 15); /* Darker shade on hover */
}

.aj-right-side-menu-circle-button-tooltip {
    line-height: 18px;
    font-size: 16px;
    height: 46px;
    visibility: hidden;
    width: 120px;
    background-color: rgb(48, 48, 48);
    color: rgb(255, 255, 255);
    text-align: center;
    border-radius: 5px;
    padding: 4px 2px;
    position: fixed;
    bottom: calc(16px + 1px);
    right: calc(120px / 2 + 10px + 50px);
    transform: translateX(50%);
    opacity: 0;
    transition: opacity 0.3s;
}

/* 9. RIGHT SIDE MENU CIRCLE BUTTONS */
/* Outer container */
.aj-quick-input-actions-toolbar-container {
    display: flex;
    justify-content: flex-start;
    padding: 4px;
    margin-top: 4px;
    margin-bottom: 4px;
}

/* Toolbar group */
.aj-quick-input-actions-toolbar {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    padding: 3px 8px;
    border-radius: 6px;
    box-shadow: 0 0 4px rgba(215, 25, 32, 0.6); /* subtle red glow */
}

/* Label text */
.aj-quick-input-actions-toolbar-label {
    color: rgb(104, 104, 104);
    font-weight: 400;
    font-size: 13px;
    line-height: 1;
}

/* Buttons */
.aj-quick-input-actions-toolbar-btn {
    color: #303030;
    padding: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

/* Button hover effect */
.aj-quick-input-actions-toolbar-btn:hover {
    background: rgba(215, 25, 32, 0.1);
    box-shadow: inset 0 0 3px rgba(215, 25, 32, 0.4);
}

/* SVG icons */
.aj-quick-input-actions-toolbar-icon {
    width: 18px;
    height: 18px;
    fill: rgb(215, 25, 32);
}

/* 10. ACCORDIONS */
.accordion-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    background-color: gray; /* Default gray circle */
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: rgb(191, 190, 190);
    color: rgb(255, 255, 255);
}

.accordion-icon-wrapper:hover {
    background-color: rgb(161, 160, 160);; /* Turns red on hover */
    cursor: pointer;
}

.accordion-icon {
    transition: transform 0.3s ease;
}

details[open] .accordion-icon {
    transform: rotate(180deg);
}

.aj-accordion-details-div-transition {
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
}

details[open] .aj-accordion-details-div-transition {
    max-height: 500px; /* large enough to fit your content */
    opacity: 1;
}

/* NEW STYLE */
.burger-button {
    position: absolute;
    top: 8px;
    right: 10px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 8000;
}

.results-dropdown-button {
    position: absolute;
    top: 6px;
    left: 2px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 24px;
    z-index: 8000;
}

.flex-container {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 72px - 32px - 30px);
    width: calc(100vw - 10px - 44px - 16px);
}

.flex-container2 {
    display: flex;
    flex-direction: row;
    height: calc(100vh - 63px - 44px - 6px - 6px - 6px);
    width: calc(100vw - 10px - 44px - 16px);
}

/* new left sidebar */
.sidebar, .sidebar-results-1, .sidebar-results-2, .sidebar-report-1 {
    background-color: white;
    transition: width 0.3s ease-in-out;
    position: relative;
}

.sidebar {
    width: 200px;
}

.sidebar-results-1 {
    flex-shrink: 0;
    width: 500px;
}

.sidebar-results-2 {
    flex-shrink: 0;
    width: 500px;
}

.sidebar-report-1 {
    width: 500px;
}

.sidebar.closed, .sidebar-results-1.closed, .sidebar-results-2.closed, .sidebar-report-1.closed {
    width: 30px;
    background-color: #f0f0f0;
    transition: width 0.3s ease-in-out;
}

.sidebar .sidebar-content {
    opacity: 1;
    transition: opacity 0.3s ease-in-out;
    margin-left: 10px;
    margin-top: 10px;
}

.sidebar.closed .sidebar-content, .sidebar-results-1.closed .sidebar-content, .sidebar-results-2.closed .sidebar-content, .sidebar-report-1.closed .sidebar-content {
    opacity: 0;
}

.toggleSidebar, .toggleSidebar-results-1, .toggleSidebar-results-2, .toggleSidebar-report-1  {
    position: absolute;
    top: 10px;
    right: 0px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
    width: 30px;
    height: 30px;
    transition: right 0.3s ease;
}

.sidebar.closed .toggleSidebar, .sidebar-results-1.closed .toggleSidebar-results-1, .sidebar-results-2.closed .toggleSidebar-results-2, .sidebar-report-1.closed .toggleSidebar-report-1 {
    right: 0px;
}

.toggleSidebar svg, .toggleSidebar-results-1 svg, .toggleSidebar-results-2 svg, .toggleSidebar-report-1 svg {
    width: 200px;
    height: 20px;
}

.flex-container-column {
    display: flex;
    flex-direction: column;
    height: calc(100vh - 72px - 32px - 30px);
    width: calc(100vw - 10px - 44px - 16px);
}

.aj-tool-dashboard-input-step-1-schematic-container {
    margin-top: 0px;
    margin-bottom: 0px
}

/* RESULTS PAGE */
#results-management-topbar {
    /* width: 100%; */
    width: calc(100vw - 10px - 44px - 16px - 40px);
    height: 0;
    background-color: white;
    position: relative;
    top: 0px; /* Start 72px from the top */
    /*left: 0;*/
    transition: height 0.3s ease-in-out;
    overflow: hidden;
    display: flex;
    z-index: 10;

}

#results-management-topbar.active {
    height: calc(100vh - 72px - 32px - 30px);
    border: 1px solid #ccc; /* Add a border */
    border-radius: 5px; /* Round the corners */
    /* height: calc(100vh - 600px); */ /* Covers half of the screen */
}

#results-management-results-content-dashboard {
    height: calc(100vh - 72px - 32px - 30px);
    /* border: 1px solid #ccc; */ /* Add a border */
    padding-top: 0px; /* Initial offset for top bar */
    width: calc(100vw - 10px - 44px - 16px);
    transition: padding-top 0.3s ease-in-out;
}


.search-input {
    width: 100%;
    padding: 8px;
    box-sizing: border-box; /* Ensure padding is included in width */
    border: 1px solid #ccc;
    border-radius: 4px;
}


/* TODO: this is for the table */
.sorted-column {
    background-color: rgba(191, 190, 190, 0.4); /* header highlight */
}

.sorted-cell {
    background-color: rgba(191, 190, 190, 0.2); /* body cell highlight */
}

/* TODO: this is for the Logs table */


/* somthing for modals */
.aj-modal-update {
    z-index: 800000 !important;
}


/* TODO: CHECK THINGS BELOW */
/*.aj-graph {
    max-width: 500px;
    margin-left: auto
}*/

/*.aj-sticky {
    position: -webkit-sticky;
    position: sticky !important;
    top: 200px;
}*/


/*.contact-info {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 20px;*/
/*    padding: 20px;*/
/*    border: 1px solid #ddd;*/
/*    background-color: #f9f9f9;*/
/*}*/

/*.contact-info h2 {*/
/*    color: #00539C;*/
/*}*/

/*.contact-info .inline, .contact-info .multiline {*/
/*    margin-bottom: 10px;*/
/*}*/

/*.contact-info .inline {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: flex-start;*/
/*}*/

/*.contact-info .inline dt, .contact-info .multiline dt {*/
/*    font-weight: bold;*/
/*    margin-right: 5px;*/
/*}*/

/*.contact-info .inline dd, .contact-info .multiline dd {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*.contact-info .multiline dd {*/
/*    margin-left: 18px; !* Adjust as needed for alignment *!*/
/*}*/

/*.contact-data {*/
/*    font-family: Arial, sans-serif;*/
/*    margin: 5px;*/
/*    padding: 10px;*/
/*    border: 1px solid #ddd;*/
/*    background-color: #f9f9f9;*/
/*}*/

/*.contact-data h2 {*/
/*    color: #00539C;*/
/*}*/

/*.contact-data .inline {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: flex-start;*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/

/*.contact-data .inline dt {*/
/*    font-weight: bold;*/
/*    margin-right: 5px;*/
/*}*/

/*.contact-data .inline dd {*/
/*    margin: 0;*/
/*    padding: 0;*/
/*}*/


/* CHECK THINGS BELOW IF NEEDED*/

/* STYLE SIDEBARS */
/*.aj-sidebar-menu-toggle {
    position: -webkit-sticky;
    position: fixed;
!important;
    top: 72px;
!important;
    left: 0px;
!important;
    border: none;
    padding: 2px;
    cursor: pointer;
    z-index: 3; !* Ensure the button is above other elements *!
}

.aj-sidebar-menu-toggle:focus {
    outline: none;
}

.aj-sidebar-menu-toggle.hidden {
    display: none; !* Hide the toggle button when the menu is open *!
}*/

/*.aj-left-sidebar {*/
/*    width: 200px;*/
/*    background-clip: padding-box;*/
/*    background-color: rgb(255, 255, 255);*/
/*    border-radius: 2px;*/
/*    box-sizing: border-box;*/
/*    font-size: 14px;*/
/*    padding: 24px;*/
/*    text-align: left;*/
/*    color: rgb(48, 48, 48);*/
/*    font-family: "myriad-pro", "Source Sans Pro", sans-serif, system-ui;*/

/*    !*background-color: #333;*!*/
/*    !*color: white;*/
/*    padding: 15px;*!*/
/*    height: calc(100vh - 72px); !* Full height *!*/
/*    position: fixed !important; !* Fixed Sidebar (stay in place on scroll) *!*/
/*    top: 72px !important;*/
/*    left: 0;*/
/*    overflow-x: hidden; !* Disable horizontal scroll *!*/
/*    transition: transform 0.3s ease; !* Smooth slide-in effect *!*/
/*    z-index: 1000; !* Ensure sidebar is above the overlay *!*/
/*    transform: translateX(-100%); !* Hide sidebar by default *!*/
/*}*/

/*.aj-left-sidebar.closed {*/
/*    transform: translateX(-100%); !* Hide sidebar *!*/
/*}*/

/*.aj-left-sidebar.open {*/
/*    transform: translateX(0); !* Hide sidebar *!*/
/*}*/
