#profileContainer {
    position: absolute; /* or relative, fixed, sticky */
    z-index: -1; /* A high value to ensure it is on top */
}

.home_container {
    display: flex; /* Use flexbox for layout */
    flex-direction: column; /* Stack items vertically */
    justify-content: center; /* Center vertically */
    align-items: flex-start; /* Align to the left */
    height: 100vh; /* Full viewport height */
    padding-left: 35px; /* Optional padding from the left */
    color: white; /* Text color */
}

.home_button-wrapper {
    display: flex; /* Use flexbox for button layout */
    margin-top: 10px; /* Space between header and buttons */
}

.home_performance-portal-btn {
    display: inline-block; /* Make buttons inline */
    background-color: orange; /* Button color */
    color: white; /* Text color for buttons */
    border: none; /* Remove default border */
    padding: 10px 15px; /* Padding for buttons */
    margin: 0 5px; /* Space between buttons */
    cursor: pointer; /* Change cursor on hover */
    border-radius: 5px; /* Rounded corners */
    text-decoration: none; /* Remove underline from links */
    transition: background-color 0.3s; /* Smooth background change */
}

    .home_performance-portal-btn:hover {
        background-color: darkorange; /* Darker on hover */
        color:black;
    }

.home_header {
    font-size: 54px; /* Adjust size as needed */
    font-weight: 900; /* Make the text bold */
    margin: 0 0 10px; /* Maintain spacing */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7); /* Optional: add a subtle shadow for better visibility */
}


.modal-body form {
    background-color: white !important; /* or use transparent if you prefer */
}

html {
  font-size: 12px;
}

.zindex {
    z-index: 9999 !important;
}

/*Footer*/
footer {
    background: #333333;
    color: white;
    width: 100%;
    position: fixed;
    bottom: 0
}

.copyright {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    letter-spacing: normal;
    line-height: normal;
    text-align: center;
    height: 45px;
    background-color: #242424;
    padding-top: 15px;
}

.cc-bg {
    background-color: #f37021;
    color: white;
    font-weight: bold; /* Makes the text bold */
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Add a shadow for better contrast */
}

@media only screen and (max-width: 600px) {
    .copyright {
        font-size: 11px;
    }
}

.child-page {
    display: flex;
    width: 100%;
}

.child-page-side-nav {
    background-color: #f4f4f4;
    width: 200px;
    height: calc(100vh - 60px); /* Adjust according to your top-nav height */
    position: fixed; /* Fixed position */
    top: 60px; /* Adjust according to your top-nav height */
    left: 0;
    overflow-x: hidden; /* Disable horizontal scroll */
    padding: 30px 5px;
    margin: 0px auto;
}

.child-page-main-content {
    margin-left: 200px; /* Same width as the side-nav */
    /*padding: 20px;*/
    flex: 1;
    /*padding-top: 10px;*/ /* Adjust according to your top-nav height */
}

.navbar {
    z-index: 1000 !important;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

body {
    color: black;
    font-family: "greycliff-cf", sans-serif;
    margin: 0;
    background-image: url('../images/landing_page_bg.jpg');
    height: 100vh; /* Full height of the viewport */
    background-size: cover; /* Resize background image to cover the entire area */
    background-position: center; /* Center the background image */
    position: relative; /* Needed for positioning the overlay */
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 1); /* Fallback color for the overlay */
}

    body::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: -150px;
        background: rgba(0, 0, 0, 0.35); /* Dark overlay with 50% opacity */
        z-index: 1; /* Ensure overlay is on top of the background */
        background-color: rgba(0, 0, 0, 0.35); /* Fallback color for the overlay */
    }

.text-cc {
    color: white !important;
    font-size:larger;
    font-weight:bolder;
}

.container-cc {
    position: relative; /* Position for content over the background */
    z-index: 2; /* Ensure content is above the overlay */
}

.modal-backdrop {
    z-index: 1; /* Ensure this is higher than the overlay */
}


.pointer {
    cursor: pointer;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
}

a {
    /*color: #0077cc;*/
    color: #dc4f34;
}

.btn-primary {
    background-color: #1b6ec2;
    /*border-color: #1861ac;*/
}

.border-top {
    border-top: 1px solid #e5e5e5;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

button.accept-policy {
    font-size: 1rem;
    line-height: inherit;
}


.memberprofilenav .navbar-nav .nav-link {
    padding: 0.5rem 1rem; /* Adjust padding as needed */
    margin-right: 0.5rem; /* Adjust margin as needed */
}

.memberprofilenav .navbar-nav .nav-item:last-child .nav-link {
    margin-right: 0; /* Remove margin for the last item */
}

.card-header {
    /*max-height: 75px !important;*/
    background: #dedede !important;
    border: 1.5px solid #ffffff !important;
    border-radius: 5px !important;
}

.card-header-left-menu {
    max-height: 25px !important;
    color: #757575 !important;
}

.cinqcolortext {
    color: #dc4f34;
}

.min-vh-10 {
    min-height: 10vh;
}

.min-vh-20 {
    min-height: 20vh;
}

.min-vh-30 {
    min-height: 30vh;
}

.min-vh-40 {
    min-height: 40vh;
}

.min-vh-50 {
    min-height: 50vh;
}

.min-vh-60 {
    min-height: 60vh;
}

.min-vh-70 {
    min-height: 70vh;
}

.min-vh-80 {
    min-height: 80vh;
}

.min-vh-90 {
    min-height: 90vh;
}

.progress-bar.progress-bar-striped.progress-bar-animated {
    background-color: #dc4f34;
}

.text-primary {
    color: #dc4f34 !important;
}

.form-check-input:checked {
    background-color: #dc4f34 !important;
    border-color: #dc4f34 !important;
}

a ul {
    color: red; /* Text color */
}

.header-search-textbox:focus {
    border-color: #ffc107;
    box-shadow: none;
}

.btn-header-search:focus {
    box-shadow: none;
}

.visit-history-button {
    margin-right: 10px; /* Adjust margin as needed */
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border: 2px solid #f37021; /* Use the orange color for the border */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    color:black;
}

    /* Highlighted state */
    .visit-history-button.clicked,
    .visit-history-button:hover {
        background-color: #ff8507;
        color: #ffffff !important;
    }

.btn.btn-primary {
    background-color: #f37021;
    color: white !important; /* Your desired text color */
    border: 0px !important;
}

    .btn.btn-primary:hover {
        background-color: #c25500; /* Darker shade of orange */
        color: white !important;
        /* You can adjust other properties like text color, border-color, etc. */
    }

    .btn.btn-primary:active {
        background-color: #c25500; /* Darker shade of orange */
        color: white !important;
    }

.census.nav-link {
    color: #dc4f34 !important;
}

.bg-gradient-info {
    background: linear-gradient(to right, #f37021, #f37021);
    color: white;
}

.btn-link {
    color: #dc4f34;
}

.cc-button {
    margin-right: 10px; /* Adjust margin as needed */
    padding: 8px 12px;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-right: 2px solid #f37021; /* Use the orange color for the border */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
    color: black;
}

    /* Highlighted state */
    .cc-button.clicked,
    .cc-button:hover {
        background-color: #ffc107;
        color: black !important;
    }

/* Style for sidebar links */
.cc-nav-link  {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: black; /* Default text color */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

    /* Hover state for sidebar links */
    .cc-nav-link:hover {
        background-color: #ffc107; /* Yellow background on hover */
        color: black; /* Black text color on hover */
    }

    /* Active state for sidebar links */
    .cc-nav-link.active {
        background-color: #f37021; /* Orange background when active */
        color: white !important; /* White text when active */
        border-left: 4px solid #ef4123; /* Red left border for emphasis */
    }

/* Style for sidebar links */
.cc-nav-link2 {
    display: block;
    padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: black; /* Default text color */
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

    /* Hover state for sidebar links */
    .cc-nav-link2:hover {
        background-color: #ffc107; /* Yellow background on hover */
        color: black; /* Black text color on hover */
    }

    /* Active state for sidebar links */
    .cc-nav-link2.active {
        background-color: #f37021; /* Orange background when active */
        color: white !important; /* White text when active */
        border-left: 4px solid #ef4123; /* Red left border for emphasis */
    }


.ui-autocomplete {
    z-index: 9999 !important;
}

/*Member Profile Page*/
.nav-pills .nav-link {
    color: black !important;
}

    .nav-pills .nav-link.active, .nav-pills .show > .nav-link {
        color: #fff;
        background-color: #f36f21;
        border-color: #1861ac;
    }

    .nav-pills .nav-link.active {
        color: #fff !important
    }

a.nav-link:hover {
    color: #f36f21 !important
}

h5 {
    font-size: 1rem !important;
}

.collapsible:hover {
    background-color: #f36f21 !important;
    color: white !important;
    cursor: pointer;
}

    .collapsible:hover h6 {
        color: white !important;
    }

.orange-icon {
    color: #f37021;
}

.white-icon {
    color: white;
}

.pr-0 {
    padding-right: 0px !important
}

/*Pagination*/
.paginate_button.current {
    background-color: coral !important;
    border: white !important;
}

/*HH Docs Badges*/
.badges {
    background-color: #EF4023;
    color: white;
    padding: 5px;
    border-radius: 5px
}

/*added input container fuild layout*/
.mb-4 {
    margin-bottom: 4%;
}





.pregnancy-form,
.activity-form,
.general-form {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

    .pregnancy-form .form-group,
    .activity-form .form-group,
    .general-form .form-group {
        margin-bottom: 20px;
    }

        .pregnancy-form .form-group label,
        .activity-form .form-group label,
        .general-form .form-group label {
            font-weight: bold;
            font-size: 14px;
        }

        .pregnancy-form .form-group select,
        .pregnancy-form .form-group input,
        .activity-form .form-group select,
        .activity-form .form-group input,
        .general-form .form-group select,
        .general-form .form-group input {
            width: 100%;
            padding: 10px;
            font-size: 14px;
            border-radius: 5px;
            border: 1px solid #ccc;
            transition: border 0.3s ease;
        }

            .pregnancy-form .form-group select:focus,
            .pregnancy-form .form-group input:focus,
            .activity-form .form-group select:focus,
            .activity-form .form-group input:focus,
            .general-form .form-group select:focus,
            .general-form .form-group input:focus {
                outline: none;
                border-color: #007bff;
            }

        .pregnancy-form .form-group .required,
        .activity-form .form-group .required,
        .general-form .form-group .required {
            color: red;
        }

    .pregnancy-form .btn-custom,
    .activity-form .btn-custom,
    .general-form .btn-custom {
        background-color: #007bff;
        color: white;
        padding: 10px 20px;
        border-radius: 5px;
        border: none;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

        .pregnancy-form .btn-custom:hover,
        .activity-form .btn-custom:hover,
        .general-form .btn-custom:hover {
            background-color: #0056b3;
            transform: scale(1.05); /* Slightly enlarge button on hover */
        }

        .pregnancy-form .btn-custom:focus,
        .activity-form .btn-custom:focus,
        .general-form .btn-custom:focus {
            outline: none;
            box-shadow: 0 0 5px rgba(0, 123, 255, 0.8);
        }

    .pregnancy-form .form-group input[type="date"],
    .activity-form .form-group input[type="date"],
    .general-form .form-group input[type="date"] {
        padding: 8px 10px;
    }


.modal-header-cinq {
    background-color: #f37021;
    color: white;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

    .modal-header-cinq .modal-title {
        color: white;
        font-weight: 500;
    }

    .modal-header-cinq .btn-close {
        filter: invert(1); /* turns default black close button to white */
        opacity: 1;
    }
