
.body html {
    background-color: #FFFFFF;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    height: 100%;
    margin: 0;
}
.background-div {
    background-image: url('background1.jpg'); 
    background-size: cover; 
    background-position: center center; 
    height: 600px; 
}
.container {
    max-width: 100%;
    min-height: 86vh;
    display: grid;
    /* Define fixed width for the left and right parts */
    grid-template-columns: 2fr 5fr 5fr 2fr;
    width: 100vw; 
    gap: 0px; 
    padding: 0px; 
}
.item {
    background: #FFFFFF; 
    padding: 0px;
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
}
.item-content-0 {
    grid-column: 1 / span 4;
    background: #FFFFFF; 
}
.item-content-1 {
    grid-column: 2 / span 2;
    background: #FFFFFF; 
}
.item-content-2 {
    grid-column: 3 / span 2;
    background: #FFFFFF; 
}
.header-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr; 
    width: 100vw; 
    gap: 0px; 
    padding: 0px; 
}
.background {
    background-image: url('background1.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 75%;
}
/* General styling for all input fields and the dropdown */
.form-group input[type="text"], 
.form-group select {
    width: 100%;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners */
    background: #fff; /* Light grey background */
    box-sizing: border-box;
}
#id_addition {
    width: 100%;
    height: 40px;
    padding: 10px;
    font-size: 18px;
    border: 1px solid #ccc;
    border-radius: 5px; /* Rounded corners */
    background: #f8f8f8; /* Light grey background */
    box-sizing: border-box;
    cursor: not-allowed; /* Cursor indicating not allowed */
    box-shadow: none; /* Remove inner shadow */
    -webkit-appearance: none; /* Remove default inner shadow in Chrome and Safari */
    -moz-appearance: none; /* Remove default inner shadow in Firefox */
    appearance: none; /* Remove default inner shadow */
}

/* Styling for the custom arrow */
#id_addition::after {
    content: '\25BC'; /* Down arrow character */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Ensure arrow doesn't block interactions */
}
/* Hover effect to show stop signal */
#id_addition:hover::after {
    content: '\25BC'; /* Downward arrow character */
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none; /* Ensure arrow doesn't block interactions */
}
.logo-text {
    font-size: 28px; 
    color: #003366; 
    justify-content: center; 
    vertical-align: middle;
    padding-top: 10px;
}
.banner-container {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 2fr 1fr; 
    width: 100vw; 
    gap: 0px; 
    padding: 0px; 
}
.banner-container-2 {
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr; 
    width: 100vw; 
    gap: 0px; 
    padding: 0px; 
    padding-left: 40px;
}
.banner-item {
    padding: 20px; 
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
}
.banner-frame {
    background-color: #fff;
    padding: 30px; 
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 40px;
    margin-bottom: 40px;
}
.header-item {
    background: #FFFFFF;
    padding: 20px; 
    display: flex;
    justify-content: left;
    align-items: left;
    flex-direction: column;
}
.header-item-top {
    grid-column: 1 / span 4;
    background-color: #003366;
    height: 15px;
}
.landing-container {
    display: flex;
    flex-direction: row;
    justify-content: top;
    vertical-align: top;
    gap: 0px; 
    margin: 0px 0px;
}
.landing-panel {
    display: flex;
    flex-direction: column;
    padding: 0px;
    font-size: 20px;
    color: #000000;
    background-color: #ffffff;
    border-radius: 10px;
    text-align: left;
    justify-content: center;
    margin: 0px;
    flex-basis: 30%; 
    box-sizing: border-box; 
}
.landing-blog {
    display: flex;
    flex-direction: column;
    padding: 0px 30px;
    font-size: 18px;
    color: #000000;
    background-color: #ffffff;
    text-align: left;
    justify-content: top;
    vertical-align: top;
    margin-left: 20px;
    margin-right: 20px;
    flex-basis: 30%; 
    box-sizing: border-box; 
}
.quote-1 {
    background-color: #F2F2F2;
    padding: 30px; 
    display: flex;
    justify-content: flex-start; /* Aligns the content to the left */
    align-items: flex-start;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 20px;
    font-size: 18px; 
    color: #003366;
    width: 80%;
    margin-left: 0; /* Ensures the quote stays aligned to the left */
}
.quote-2 {
    background-color: #F2F2F2;
    padding: 30px; 
    display: flex;
    justify-content: flex-end; /* Aligns the content to the right */
    align-items: flex-end;
    flex-direction: column;
    border-radius: 20px;
    margin-top: 20px;
    font-size: 18px; 
    color: #003366;
    width: 80%;
    margin-left: auto; /* Pushes the quote to the right */
    margin-right: 0; /* Ensures the quote stays aligned to the right */
}
.footer-text {
    font-size: 20px; 
    color: #28A745;
    width: 50%;
    margin: 0 auto;
    text-align: center;
}
.measure {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    font-size: 20px;
    color: #28A745;
    background-color: #fff;
    border-radius: 10px;
    border: #003366 solid 2px;
    text-align: center;
    margin: 10px;
    height: 150px;
    width: 100%;
    box-sizing: border-box;
}

.measure i {
    font-size: 40px;
    margin-bottom: 10px;
    color: #003366;
}

.measure span {
    color: #003366;
    font-weight: bold;
}


@media (max-width: 768px) {
    /* Hides the most left and most right columns on smaller screens */
    .container {
        grid-template-columns: 1fr; /* Ensure full width for the container */
    }
    .item-content-0 {
        width: 100%; 
    }
    .item-content-1 {
        width: 100%; 
    }
    .header-container {
        grid-template-columns: auto; 
        font-size: 14px;
    }
    .logo-text {
        font-size: 14px; 
        justify-content: center; 
        vertical-align: middle;
        padding-top: 10px;
    }
    .banner-container {
        padding: 0px;
        display: flex; 
        justify-content: center; 
        align-items: center; 
    }
    .banner-container-2 {
        padding: 0px;
        display: flex; 
        justify-content: center; 
        align-items: center; 
        padding-left: 0px;
    }
    .banner-frame {
        background-color: #fff;
        padding: 30px; 
        border-radius: 20px;
        margin: 30px 10px; /* Small margins to ensure it doesn't touch the edges */
        max-width: 80%; /* Ensure it doesn't exceed 100% */
        box-sizing: border-box;
    }
    .banner-item {
        display: none; /* Hide extra banner items on mobile */
    }
    .landing-container {
        display: flex;
        flex-direction: column;
        justify-content: top;
        vertical-align: top;
        gap: 0px; 
        margin: 0px 0px;
        width: 100%;
    }
    .landing-blog {
        display: flex;
        flex-direction: column;
        padding: 20px;
        font-size: 18px;
        color: #000000;
        background-color: #ffffff;
        text-align: left;
        justify-content: top;
        vertical-align: top;
        margin-left: 20px;
        margin-right: 20px;
        flex-basis: 30%; 
        box-sizing: border-box; 
    }
    .footer-text {
        font-size: 20px; 
        color: #28A745;
        width: 95%;
        margin: 0 auto;
        text-align: center;
    }
}
@media screen and (max-width: 1024px) {
    .header-container {
        font-size: 16px;
    }
    .logo-text {
        font-size: 22px; 
        justify-content: center; 
        vertical-align: middle;
        padding-top: 10px;
    }
    .banner-container {
        grid-template-columns: 0fr 2fr 0fr;
    }
    .banner-container-2 {
        grid-template-columns: 0fr 2fr 0fr;
        padding-left: 20px;
    }
    .item-content-1 {
        width: 100%; 
    }
    .landing-blog {
        display: flex;
        flex-direction: column;
        padding: 0px;
        font-size: 18px;
        color: #000000;
        background-color: #ffffff;
        text-align: left;
        justify-content: top;
        vertical-align: top;
        margin-left: 20px;
        margin-right: 20px;
        flex-basis: 30%; 
        box-sizing: border-box; 
        width: 90%;
    }
    .footer-text {
        font-size: 20px; 
        color: #28A745;
        width: 80%;
        margin: 0 auto;
        text-align: center;
    }
}
@media screen and (max-width: 1520px) {
    .container {
        /* Change the layout for smaller screens */
        grid-template-columns: 0fr 2fr 2fr 0fr;
    }
    .header-container {
        grid-template-columns: 0fr 2fr 3fr 0fr;
    }
    .logo-text {
        font-size: 28px; 
        justify-content: center; 
        vertical-align: middle;
        padding-top: 10px;
    }
    .banner-container {
        grid-template-columns: 0fr 2fr 2fr 0fr;
    }
    .banner-container-2 {
        grid-template-columns: 0fr 3fr 1fr 0fr;
    }
}
.image-container {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    padding-top: 0px; 
    padding-bottom: 20px;
}
.item-top-right-2 {
    grid-column: 3 / span 2;
    background-image: url('background2.jpg'); 
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}
.image-container img {
    width: 100%; 
    height: auto;
    object-fit: cover;
    object-position: center; 
    max-width: 200px;
}
.bottom-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.bottom-container > div {
    flex: 1;
    background-color: #ccc;
    padding: 0px;
    margin: 0 0px;
}
.street-input {
    width: 200px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;

}
.zipcode-input {
    width: 120px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.city-input {
    width: 200px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.short-input {
    width: 50px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.small-mid-input {
    width: 85px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.mid-input {
    width: 100px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.mid-input-right {
    width: 100px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
    text-align: right;
}
.wide-input {
    width: 150px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.wider-input {
    width: 200px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.extra-wide-input {
    width: 250px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.extra-wider-input {
    width: 350px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    padding: 7px;
    padding-left: 10px;
}
.text-input-box {
    width: 300px !important;
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    padding: 7px;
    padding-left: 10px;
    text-align: left;
}
.tight-row {
    margin-bottom: 0px !important; 
}
.tight-col {
    padding-top: 0 !important; 
    padding-bottom: 0 !important; 
}
.rounded-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
    border: 0px solid #fef7ec; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    background-color: #fef7ec; 
    font-family: 'Lato', sans-serif;
}
.rounded-box::before {
    content: '\f05a';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    left: 2px;
    font-size: 28px;
    color: #28A745;
}
.rounded-box2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    text-align: center;
    border: 0px solid #fef7ec; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    background-color: #fef7ec;
    font-family: 'Lato', sans-serif;
}
.flow-diagram {
    text-align: center;
    font-family: 'Lato', sans-serif;
}
.step {
    position: relative;
    margin: 0px 0;
    padding: 10px;
    border-color: #005b5e;
    border-width: 2px;
    border-style: solid;
    background-color: #ffffff;
    border-radius: 10px;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}
.step::before {
    content: attr(data-step); /* Use a custom data attribute for numbering */
    position: absolute;
    top: 5px; 
    left: -15px;
    width: 30px; 
    height: 30px; 
    line-height: 30px; 
    text-align: center; /* To horizontally center the text */
    background-color: #005b5e;
    color: #ffffff;
    border-radius: 50%; /* Makes the shape a circle */
    font-weight: bold;
    font-family: 'Lato', sans-serif;
}
.step-i {
    position: relative;
    margin: 0px 0;
    padding: 20px;
    border-color: #005b5e;
    border-width: 2px;
    border-style: solid;
    background-color: #ffffff;
    border-radius: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
}
.step-i::before {
    content: attr(data-step); /* Use a custom data attribute for numbering */
    position: absolute;
    top: 5px; 
    left: -15px;
    width: 30px; 
    height: 30px; 
    line-height: 30px; 
    text-align: center; /* To horizontally center the text */
    background-color: #005b5e;
    color: #ffffff;
    border-radius: 50%; /* Makes the shape a circle */
    font-weight: bold;
    font-family: 'Lato', sans-serif;
}
.step-i::after {
    content: '\f05a\f103';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 0px;
    right: 5px;
    font-size: 20px;
    color: #e3a34c;
}
.step-i:hover {
    background-color: #fef7ec;
    border-width: 2px;
}
.flow-diagram-horizontal {
    text-align: center;
    font-family: 'Lato', sans-serif;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 0px;
    margin: 0px;
    width: 100%;
}

.step-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.step-h {
    position: relative;
    margin: 0px;
    padding: 20px;
    border-color: #005b5e;
    border-width: 2px;
    border-style: solid;
    background-color: #ffffff;
    border-radius: 10px;
    width: 100%;
    font-family: 'Lato', sans-serif;
    color: #005b5e;
    
}
.step-h-detail {
    background-color: #fef7ec;
    border-radius: 5px;
    margin-top: 5px;
    font-family: 'Lato', sans-serif;
    margin: -10px 0;
    padding: 20px;
    border-color: #005b5e;
    border-width: 2px;
    border-style: solid;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    text-align: left;
}
.step-h::after {
    content: '\f05a\f103';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    bottom: 0px;
    right: 5px;
    font-size: 20px;
    color: #e3a34c;
}
.step-h:hover {
    background-color: #fef7ec;
    border-width: 2px;
}
.arrow-h {
    flex: 0 0 auto;
    font-size: 32px;
    height: fit-content;
    color: #005b5e;
    margin: 0px;
    gap: 0px;
}
.hidden {
    display: none;
}

.step-detail {
    background-color: #fef7ec;
    border-radius: 5px;
    margin-top: 5px;
    font-family: 'Lato', sans-serif;
    margin: -10px 0;
    padding: 20px;
    border-color: #005b5e;
    border-width: 2px;
    border-style: solid;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}
.collapse {
    background-color: #fef7ec;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #003366;
    cursor: pointer;
}

.offcanvas-collapse .close-btn {
    display: none; /* Hide by default */
}

.offcanvas-collapse.open .close-btn {
    display: block; /* Show when menu is open */
}
.arrow {
    font-size: 32px;
    font-family: 'Lato', sans-serif;
    color: #005b5e;
}
.flow-container {
    display: flex;
    align-items: left;
    justify-content: flex-start;
    position: relative;
    padding: 0;
    list-style: none;
}
.flow-step {
    position: relative;
    padding: 4px 8px; /* Adjust padding as needed */
    margin: 0 10px; /* Add horizontal margin to ensure space for the line */
    border: 2px solid #af8f6f;
    background-color: #ffffff;
    border-radius: 5px;
    text-align: center; /* Ensure text is centered */
    color: #af8f6f;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}
.flow-step a.step-link {
    display: block; /* Make the link fill the div */
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color from parent */
    height: 100%; /* Make link fill entire height */
    line-height: inherit; /* Align link text vertically */
    width: 100%; /* Make link fill entire width */
}
.flow-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%; /* Align the line vertically in the middle */
    right: -30px; /* Position the right end of the line just outside the step */
    width: 30px; /* Length of the line */
    height: 2px;
    background-color: #af8f6f;
    transform: translateY(-50%); /* Center the line vertically relative to its position */
}
.flow-step.active {
    background-color: #af8f6f;
    color: #ffffff;
    border-color: #af8f6f;
}
.flow-step:last-child:after {
    display: none !important;
}
.navigation-container {
    display: flex;
    justify-content: space-between; 
    gap: 2px
}
.multi-column {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2;    /* Firefox */
    column-count: 2;         /* Standard syntax */

    -webkit-column-gap: 20px; /* Chrome, Safari, Opera */
    -moz-column-gap: 20px;    /* Firefox */
    column-gap: 80px;         /* Standard syntax */

    -webkit-column-rule: 0px solid #ccc; /* Chrome, Safari, Opera */
    -moz-column-rule: 0px solid #ccc;    /* Firefox */
    column-rule: 0px solid #ccc;         /* Standard syntax */
}
/* Responsive layout: Below 768px, use a single column */
@media (max-width: 768px) {
    .multi-column {
        -webkit-column-count: 1; /* Chrome, Safari, Opera */
        -moz-column-count: 1;    /* Firefox */
        column-count: 1;         /* Standard syntax */
    }
}
.tooltip {
    display: none;
    position: absolute;
    background-color: black;
    color: white;
    padding: 5px;
    border-radius: 5px;
    z-index: 1000;
}


.footer {
    flex-shrink: 0;
    text-align: center;
    padding: 10px;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
  }
.table-hoverable tbody tr:hover {
    background-color: #fef7ec; 
    cursor: pointer;
}
.selected-row {
    background-color: #fef7ec;
}

/* Loader Overlay */
#loadingSpinner {
    position: fixed; /* Positioned relative to the viewport, which means it always stays in the same place even if the page is scrolled */
    top: 0;
    left: 0;
    display: flex; /* Using flex to center children */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    width: 100vw; /* Full viewport width */
    height: 100vh; /* Full viewport height */
    z-index: 1050; /* Sit on top */
    background: rgba(0, 0, 0, 0.8); /* Optional: adds a semi-transparent overlay */
}

/* Actual Loader */
.loader {
    border: 16px solid #f3f3f3;
    border-top: 16px solid #005b5e; 
    border-radius: 50%;
    width: 80px; 
    height: 80px; 
    animation: spin 2s linear infinite;
}
.loading-text {
    color: #ffffff;
    margin-top: 10px;
    text-align: center;
    font-size: 18px;
    font-family: 'Lato', sans-serif;
}


@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.spaced-list li {
    margin-bottom: 10px;
}
.product-main {
    margin: 0;
    padding: 10px;
    border: 2px solid #005b5e;
    border-radius: 10px;
    text-align: left;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.checkmark-list {
    list-style-type: none;
}
.checkmark-list li::before {
    content: '\2713'; /* Unicode for checkmark */
    color: #28A745; /* Color of the checkmark */
    font-weight: bold;
    display: inline-block; 
    width: 2em; 
    margin-left: -2em;   /* Adjust position */
}
.checkmark-list li {
    margin-bottom: 10px;
}




.custom-control-input:not(:checked) ~ .custom-control-label::before {
    background-color: #FFFFFF;
    border-color: #FAC938; 
}
.custom-control-input:not(:checked) ~ .custom-control-label::after {
    background-color: #FAC938;
    border-color: #FAC938; 
}
.custom-control-input:checked ~ .custom-control-label::before {
    background-color: #FAC938; 
    border-color: #FAC938; 
}
.custom-control-input:checked ~ .custom-control-label::after {
    background-color: #FAC938; 
}
.custom-control-label {
    vertical-align: middle;
    font-size: 14px; 
}

.my-table {
    border: 3px solid #408F88; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-left: 10px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 10px;
    background-color: #FFFFFF;
    font-family: 'Lato', sans-serif; 
}
.my-table-action {
    border: 3px solid #408F88; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-left: 20px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-right: 20px;
    background-color: #FFFFFF;
    font-family: 'Lato', sans-serif; 
}
.my-table-gr {
    border: 0px solid #408F88; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    background-color: #d1e4e2;
    font-family: 'Lato', sans-serif;
}
.my-table-gr-s {
    border: 0px solid #408F88; 
    border-radius: 20px; 
    overflow: hidden; 
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 30px;
    background-color: #d1e4e2;
    font-family: 'Lato', sans-serif;
}
.my-table-nav {
    border: 1px solid #408F88; 
    border-radius: 15px; 
    border-color: #FFFFFF;
    overflow: hidden; 
    padding: 1px;
    font-family: 'Lato', sans-serif;
}
.my-table-y {
    border: 2px solid #FAC938; 
    border-radius: 5px; 
    overflow: hidden; 
    padding-left: 10px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 10px;
    background-color: #FFFFFF;
    font-family: 'Lato', sans-serif; 
    width: min-content;
}
.navstyle {
    font-family: 'Lato', sans-serif;
}
.title {
    color: #408F88;
}
.fill-image {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
.cell {
    border-top: 1px solid #408F88;
    border-bottom: 1px solid #408F88;
}
.cell_top {
    border-top: 1px solid #408F88;
}
.cell_bottom {
    border-bottom: 1px solid #408F88;
}
.category {
    min-height: 250px;
    height: 300px;
    width: 230px;
    border: 2px dashed #408F88; 
    border-radius: 20px; 
    overflow: hidden;
    padding-left: 15px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 15px;
}
.category ul {
    min-width: 200px;
    min-height: 260px;
}
.placeholder {
    min-height: 50px;  
    background-color: transparent; 
    opacity: 0;
}
.list {
    list-style-type: none;
    padding-left: 0px;
}


.solution-container {
    width: 100%;
    border: 3px solid #FFFFFF; 
    border-radius: 10px; 
    background-color: #d1e4e2;
    overflow: hidden;
    padding-left: 20px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
}
.solution {
    display: flex;
    flex-direction: column;
}
.categoryset {
    width: 100%;
    border: 1px solid #408F88; 
    border-radius: 20px; 
    overflow: hidden;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    padding-right: 20px;
}
.selectable .solution-container {
    background-color: #d1e4e2;
}
.unselectable .solution-container {
    background-color: #FFFFFF;
}
.unit-style {
    font-size: 0.8em; 
}
.goal {
    position: relative;
    display: inline-block;
    width: 220px;
}
.select .currency-input {
    position: relative;
    display: inline-block;
}
.select .currency-input input {
    padding-left: 20px; 
    text-align: right;
}
.select .currency-input::before {
    content: "€";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1; 
    font-size: 14px; 
}
.setting-table {
    padding-left: 5px;
    padding-right: 5px;
}
.currency {
    position: relative;
    display: inline-block;
    width: 100px;
}
.currency input.currency-value {
    padding-right: 30px;
}
.currency::before {
    content: "€";
    position: absolute;
    left: 5px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    font-size: 14px;
}
.percentage {
    position: relative;
    display: inline-block;
    width: 80px;
}
.percentage input.percentage-value {
    text-align: right;
    padding-right: 20px;
    width: 80px;
}
.percentage::after {
    content: "%";
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    line-height: 1;
    font-size: 14px;
}
.form-align input.form-align-value {
    text-align: right;
    padding-right: 30px;
    width: 80px;
}
.form-control {
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
}
.form-control option {
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    font-size: 14px;
}
.qs-textarea {
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    height: 150px;
}
.form-login {
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    height: 42px;
    width: 240px;
    margin: 0 auto;
    display: block;
}
.form-login-name {
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    height: 42px;
    width: 300px;
    margin: 0 auto;
    display: block;
    font-family: 'Lato', sans-serif;
}
.form-login-box {
    border-radius: 4px;
    border: 1px solid #d1e4e2;
    text-align: left;
    height: 42px;
    width: 282px;
    margin: 0 auto;
    display: block;
}
.input-wrapper {
    display: inline-block;
    /* Other styles you may need */
}
.profile-container {
    width: 100%;
    margin: 0 auto; 
    border: 1px solid #FFFFFF;
    border-radius: 10px;
    background-color: #FFFFFF;
    overflow: hidden;
    padding: 4px 10px; 
}
.navbar-custom {
    background-color: #FFFFFF;
}
.navbar-custom .navbar-nav .nav-link {
    color: #003366;
}
.navbar-custom .navbar-nav .nav-link:hover {
    color: #28A745;
}
.navbar-custom .navbar-toggler {
    border-color: #FFFFFF;
}
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23003366' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
.navbar-nav .fa-user {
    color: #003366;
    background-color: #FFFFFF;
}
.navbar-nav .dropdown-menu {
    background-color: #FFFFFF; 
    border: none; 
    border-radius: 0;  
    right: 0;
    left: auto;
}
.navbar-nav .dropdown-menu .dropdown-item {
    background-color: #FFFFFF;  
    color: #003366;
}
.navbar-nav .dropdown-menu .dropdown-item:hover {
    background-color: #28A745;
}
@media (max-width: 767.98px) {
    .offcanvas-collapse {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 50%;
        transition: transform 0.3s ease-in-out;
        background-color: #667E82;
        padding: 40px;
        padding-top: 100px;
    }
    
    .offcanvas-collapse.open {
        transform: translateX(-100%);
    }
}

/* Normal navbar styles for medium screens and up */
@media (min-width: 768px) {
    .offcanvas-collapse {
        position: relative;
        top: auto;
        right: auto;
        width: auto;
        height: auto;
        transform: none !important;
        background-color: transparent;
    }
}

.navbar-bottom {
    background-color: #F2F2F2;
    text-align: center;
    justify-content: center;
}
.navbar-bottom .navbar-nav .nav-link {
    color: #003366;
}
.navbar-bottom .navbar-nav .nav-link:hover {
    color: #28A745;
}
.nav-item {
    display: flex;
    align-items: center;
}

.separator {
    padding: 0 0px;
    font-size: 18px;
    line-height: 1;
}
.payment-container {
    margin: 0 auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Adjusts layout based on available space */
    align-items: center;
    gap: 20px;
}

.payment-info {
    justify-self: start;
    text-align: center;
}

.ideal-image {
    justify-self: center;
    padding: 0px;
    margin: 0px;
}



.custom-btn {
    background-color: #28A745;
    color: #fff;
    font-size: 18px;
    padding: 5px 20px;
    text-decoration: none;
    display: inline-block;
    border-radius: 5px; /* Optional: Adds rounded corners */
}

.custom-btn:hover {
    background-color: #218838; /* Change this to the hover color you prefer */
    color: #fff; /* Ensure the text color stays white */
}
