:root {
    font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif !important;
    line-height: 1.5;
    font-weight: 400;
    font-synthesis: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--light-background-gray);
    --white: white;
    --black: black;
    --thistle: #ebc8ea;
    
    --navy-blue: #162b49;
    --midnight-blue: #0d1c26;
    --blue: #004eb0;
    --blue-hover: #3366cc;
    --medium-blue: #5894ed;
    --light-blue: #d0eaff;
    --cadet-blue: #62999f;
    --light-cyan: #cfffff;
    
    --midnight-green: #052401;
    --dark-green: #003b2e;
    --forest-green: #146b0f;
    --green: #1F9C14;
    --green-hover: #39c22d;
    --medium-green: #6ddf6f;
    --light-green: #d6f9d7;
    --cadet-green: #5fae7a;
    --light-teal: #95f1d6;
    --spruce-green: #39676c;
    --spruce-green-hover: #204f54;
    --light-spruce-green: #b2d2d6;    
    
    --sand-dune: #c6af81;
    --creamy-coffee: #928a77;
    --medium-coffee: #403d35;
    --dark-coffee: #26251f;
    --khaki-gray: #c2c0b5;
    
    --purple: #8752ad;
    --purple-hover: #7830ad;
    --pure-plum: #583f98;
    --light-purple: #d1b3e5;
    
    --lava-red: #ed5735;
    --lava-red-hover: #cd3a1d;
    --light-lava-red: #ffedcc;
    --creamsicle-orange: #f37021;

    --smooth-lemon: #fbaf33;
    --gold: #ffa500;
    --gold-hover: #df8b00;
    --light-gold: #ffedcc;
    --light-background-gray: #f6f7fa;
    --light-warm-gray: #f1f1f1;
    --cool-header-gray: #e7e8ee;
    --medium-gray: #c0c0c0;
    --medium-dark-gray: #505050;
    --dark-gray: #343a40;
    --dark-gray-hover: #23272b;
    --drab-gray: #494A54;
    --light-peachy-pink: #fdf4ed;
    --light-salmon: #ff8f66;
    --lemon-chiffon: #ffffd1;
    --old-post-it-yellow: #e6d89b;
    --drab-olive: #5e5a20;
}

html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;
}

body {
    /*margin-bottom: 60px;*/
    background-color: var(--light-background-gray) !important;
    /*font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif !important;*/
    font-family: Georgia, Garamond, "Palatino Linotype", Palatino, "Book Antiqua", serif !important;
}

hr {
    margin: 0;
    padding: 0;
}




/* Provide sufficient contrast against white background */
a, a:visited {
    color: var(--green);
}
a:hover, a:focus, a:active {
    color: var(--green-hover);
}


.a_h1toh6, .a_h1toh6:visited {
    color: var(--green);
}
.a_h1toh6:hover, .a_h1toh6:focus, .a_h1toh6:active {
    color: var(--green-hover);
}


.bg-alt, .bg-light {
    background-color: #ecedf2 !important;
}




/*~~~~~~~~~~~~~ NAVBAR FORMATTING ~~~~~~~~~~~~~~~*/
.navbar {
    /* background-color: var(--navy-blue); */
    background: linear-gradient(15deg, #39c22d 5%, #000 100%) !important;
    border-bottom: 5px solid var(--sand-dune) !important;
    box-shadow: 0 2px 5px #8f93a399;
}

a.navbar-brand {
    white-space: normal;
    text-align: center;
    word-break: break-all;
    color: #f1f1f1
}

a.navbar-brand span {
    color: #39c22d;
    font-style: italic;
}


/* Custom color for nav-links inside a dark navbar */
.navbar-dark .nav-link {
    font-size: 1.125rem;
    color: var(--cool-header-gray, #f8f9fa) !important; /* Light gray/white */
    border-radius: 5px;
    transition: color .6s, background-color .6s;
}

/* On hover/focus/active */
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link:focus,
.navbar-dark .nav-link.active {
    color: var(--white, #fff);
    background-color: var(--green-hover);
}

.dropdown .dropdown-menu .nav-item .nav-link {
    color: var(--medium-coffee) !important;
}


.dropdown-item {
    color: var(--medium-coffee) !important;
}
.dropdown-item:active {
    background-color: var(--green-hover) !important;
}


/* Dark background basic nav list */
.nav-dark-bg .nav-link {
    color: var(--cool-header-gray, #ccc);
}

.nav-dark-bg .nav-link:hover,
.nav-dark-bg .nav-link:focus,
.nav-dark-bg .nav-link.active {
    color: var(--white, #fff);
    background-color: var(--green-hover);
}


/* Light background basic nav list */
.nav-light-bg .nav-link {
    color: var(--bs-dark, #fff);
    border-top: 1px solid var(--white);
    border-bottom: 1px solid var(--white);
    border-left: 1px solid var(--white);
    border-right: 1px solid transparent;
    border-radius: 0;
    margin-bottom: .25rem;
    transition: color .3s, background-color .3s;
}

.nav-light-bg .nav-link:hover,
.nav-light-bg .nav-link:focus,
.nav-light-bg .nav-link.active {
    color: var(--green);
    border-top: 1px solid var(--green-hover);
    border-bottom: 1px solid var(--green-hover);
    border-left: 3px solid var(--green-hover);
    font-weight:600;
    background-color: var(--white);
    background: linear-gradient(85deg, var(--white) 5%, var(--light-background-gray) 102%) !important;
    background-clip: padding-box; /* Ensures background doesn't bleed */
    transform: translateZ(0); /* Force GPU compositing */
}



/*btn-primary*/
.btn-primary, .btn-primary:visited {
    font-weight: 600;
    color: var(--sand-dune);
    background-color: var(--sand-dune);
    background: linear-gradient(10deg, var(--medium-coffee) 0%, var(--creamy-coffee) 98%);
    border: 1px solid var(--creamy-coffee);
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus {
    color: #fff;
    background-color: var(--sand-dune);
    background: linear-gradient(10deg, var(--medium-coffee) 0%, var(--creamy-coffee) 75%);
    border: 1px solid var(--sand-dune);
}


/*btn-outline-primary*/
.btn-outline-primary, .btn-outline-primary:visited {
    color: #005a68 !important; /*#258c9b #005a68*/
    background-color: #eaffff !important;
    border: 1px solid #005a68 !important;
}

.btn-outline-primary:hover, .btn-outline-primary:focus, .btn-outline-primary:active {
    color: #fff !important;
    background: linear-gradient(10deg, var(--medium-coffee) 0%, var(--sand-dune) 98%);
    border: 1px solid var(--sand-dune) !important;
}



.accordion-header {
    background: linear-gradient(to right, var(--white) 0%, var(--light-background-gray) 45%, var(--light-background-gray) 55%, var(--white) 100%);
    border-bottom: 2px solid var(--white);
}

.accordion-item,
.accordion-header,
.accordion-button,
.accordion-body {
    background-color: transparent !important;
    box-shadow: none;
}

/* Set text color to Bootstrap primary */
.accordion-button {
    color: var(--green) !important;
    font-weight: 600;
}

.accordion-button:not(.collapsed) {
    background-color: transparent !important;
    box-shadow: none;
    color: var(--green) !important; /* Ensure color stays primary when open */
}

.accordion-button:focus {
    box-shadow: none;
}



/*.launch-card:hover,
.launch-card:focus {
    background: linear-gradient(65deg, #4a89dd 25%, #000 100%) !important;
    color: white;
    transition: color .6s, background .6s;
}*/

.card-link, .card-link:visited {
    color: var(--dark-coffee);
}

.launch-card {
    position: relative;
    z-index: 0;
    overflow: hidden;
    transition: color 0.6s, transform 0.3s ease;
}

.launch-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(65deg, #39c22d 25%, #000 100%);
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
    z-index: -1;
}

.launch-card:hover::before,
.launch-card:focus::before {
    opacity: 1;
}

.launch-card:hover,
.launch-card:focus {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}




.form-container {
    background-color: rgba(255,255,255,1);
    border-radius: 1rem;
    border: 1px solid var(--medium-gray);
    /*    margin-top: 1rem;
        margin-bottom: 10rem;*/
}

.form-title-div {
    margin-top: 1.25rem;
}

.form-section-title-div {
    margin-top: 1rem;
    border-bottom: 1px solid var(--medium-gray);
}




.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    white-space: nowrap;
    line-height: 60px; /* Vertically center the text there */
    border-top: 4px solid var(--sand-dune);
    background: var(--dark-coffee);
    background: linear-gradient(0deg, var(--dark-coffee) 25%, var(--medium-coffee) 99%);
    box-shadow: 0 4px 5px #8f93a399;
    color: #c6d5de !important;
}



.phone-2digit-input {
    width: 2.75rem;
}

.phone-3digit-input {
    width: 3.5rem;
}

.phone-4digit-input {
    width: 4.5rem;
}




/*CUSTOM CHECKBOXES*/
/*Note: Entire reason for using this class and not bootstrap custom checkbox is when form is posted with bootstrap custom checkboxes, no values are selected in check box list.*/
/* The container */
.chkContainer {
    /* display: block; */
    /* display: inline-block; */
    position: relative;
    padding-left: 2rem;
    margin-right: 1.5rem;
    margin-bottom: 1.25rem;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.chkContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.575rem;
    width: 1.6rem;
    background-color: #eee;
    border: 1px solid #ced4da;
    border-radius: .25em;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

/* Create a custom checkbox */
.checkmarkDisabled {
    position: absolute;
    top: 0;
    left: 0;
    height: 1.575rem;
    width: 1.6rem;
    background-color: #f1f1f1;
    border: 1px solid #ced4da /*#ced4da*/;
    border-radius: .25em;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    cursor: not-allowed;
}


/* On mouse-over, add a grey background color */
.chkContainer:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.chkContainer input:checked ~ .checkmark {
    /*background-color: #007bff;*/
    background-color: #343a40;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkmarkDisabled:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.chkContainer input:checked ~ .checkmark:after {
    display: block;
}

.chkContainer input:checked ~ .checkmarkDisabled:after {
    display: block;
}

/* Style the checkmark/indicator */
.chkContainer .checkmark:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Style the checkmark/indicator */
.chkContainer .checkmarkDisabled:after {
    left: 9px;
    top: 4px;
    width: 7px;
    height: 13px;
    border: solid #a0a0a0;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
/*END CUSTOM CHECKBOXES*/




.shadowed-image {
    position: relative;
    display: inline-block;
}

.shadowed-image img {
    display: block;
    width: 100%;
    height: auto;
}

.shadowed-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    background: radial-gradient(circle, rgba(0,0,0,0) 50%, rgba(0,0,0,0.5) 100%);
}




/*~~~~~~~~~~~~~~~~~~ SITE WIDE SPECIALTY ~~~~~~~~~~~~~~~~~~*/

.readonly {
    background-color: var(--light-warm-gray);
    color: var(--medium-gray);
    border-color: var(--medium-gray);
    cursor: not-allowed;
}

.justifyText {
    text-align: justify;
}

.fadeInMedium {
    animation: fadeIn;
    animation-duration: 1.25s;
}

.fadeInSlower {
    animation: fadeIn;
    animation-duration: 3.5s;
}

/*.goodValue {*/
/*    color: var(--good-green);*/
/*}*/

/*.warnValue {*/
/*    color: var(--sad-orange);*/
/*}*/

/*.badValue {*/
/*    color: var(--bad-red);*/
/*}*/


.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
    font-size: 14px;
    font-family: Arial, sans-serif;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.styled-table thead tr {
    background-color: #39c22d;
    color: #ffffff;
    text-align: left;
}

.styled-table th,
.styled-table td {
    padding: 6px 8px;
}

.styled-table tbody tr {
    border-bottom: 1px solid #dddddd;
}

    .styled-table tbody tr:nth-of-type(even) {
        background-color: #f3f3f3;
    }

    .styled-table tbody tr:last-of-type {
        border-bottom: 2px solid #009879;
    }

    .styled-table tbody tr:hover {
        background-color: #f1f1f1;
        cursor: pointer;
    }

