: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;
    --pansy-blue: #95C0F6;
    --light-blue: #d0eaff;
    --cadet-blue: #62999f;
    --light-cyan: #cfffff;
    --cyan-gray: #c8d6d7;
    --purple: #8752ad;
    --purple-hover: #7830ad;
    --light-purple: #d1b3e5;
    --spruce-green: #39676c;
    --spruce-green-hover: #204f54;
    --light-spruce-green: #b2d2d6;
    --lava-red: #ed5735;
    --lava-red-hover: #cd3a1d;
    --light-lava-red: #ffedcc;
    --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;
    --bs-dropdown-link-active-bg: red !important;
    --centurion-blueberry: #007bc1;
    --centurion-plum: #583f98;
    --centurion-orange: #f37021;
    --centurion-lemon: #fbaf33;
    --centurion-gray: #6e6e6e;
    --centurion-black: #000000;
}

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;
}

hr {
    margin: 0;
    padding: 0;
}

.input-validation-message {
    color: var(--bs-danger);
    font-style: italic;
}


.navbar {
    /* background-color: var(--navy-blue); */
    background: linear-gradient(15deg, #4a89dd 5%, #000 100%) !important;
    border-bottom: 5px solid var(--centurion-lemon) !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: #4a89dd;
        font-style: italic;
    }


/* Custom color for nav-links inside a dark navbar */
.navbar-dark .nav-link {
    color: var(--cool-header-gray, #f8f9fa); /* 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(--medium-blue, #0056b3);
    }




/* 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(--medium-blue, #0056b3);
    }


/* Light background basic nav list */
.nav-light-bg .nav-link {
    color: var(--bs-dark, #212529);
    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(--bs-primary, #0d6efd);
        border-top: 1px solid var(--medium-blue);
        border-bottom: 1px solid var(--medium-blue);
        border-left: 3px solid var(--medium-blue);
        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 */
    }



.tooltip-inner {
    text-align: left;
}


/*btn - base*/
.btn {
    text-decoration: none;
    transition: color .5s, background-color .5s;
    justify-content: center;
    align-items: center;
    box-shadow: 0 3px 3px #8f93a399;
}

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

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


/*btn-outline-primary*/
.btn-outline-primary, .btn-outline-primary:visited {
    color: var(--blue) !important;
    background-color: var(--light-background-gray) !important;
    border: 1px solid var(--blue) !important;
}

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

/*btn-outline-danger*/
.btn-outline-danger, .btn-outline-danger:visited {
    color: #cc0000;
    border-color: #cc0000;
}

    .btn-outline-danger:hover, .btn-outline-danger:focus, .btn-outline-danger:active {
        color: #fff;
        background: rgb(204,0,0);
        background: linear-gradient(0deg, rgba(204,0,0,1) 0%, rgba(0,0,0,1) 100%);
    }


.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-header-inversed {
    background: linear-gradient(to right, var(--light-background-gray) 0%, var(--white) 45%, var(--white) 55%, var(--light-background-gray) 100%);
    border-bottom: 1px 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(--bs-primary) !important;
    font-weight: 600;
}

    .accordion-button:not(.collapsed) {
        background-color: transparent !important;
        box-shadow: none;
        color: var(--bs-primary) !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;
}*/


.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, #4a89dd 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 */
    color: #c6d5de;
    background: var(--midnight-blue);
    background: linear-gradient(0deg, var(--midnight-blue) 25%, var(--navy-blue) 99%);
    box-shadow: 0 4px 5px #8f93a399;
}




/************************ TAGS ***********************/

/*############# TAGS - Pennant Style #############*/
.tag-pennant {
    display: inline-block;
    position: relative;
    background: var(--centurion-lemon);
    color: white;
    padding: 6px 12px 6px 8px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-right: 8px;
    border-radius: 2px 0 0 2px;
}

    .tag-pennant::after {
        content: '';
        position: absolute;
        right: -10px;
        top: 0;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 14px 0 14px 10px;
        border-color: transparent transparent transparent var(--centurion-orange);
    }

    /* System tag variant */
    .tag-pennant.system {
        background: var(--centurion-plum);
    }

        .tag-pennant.system::after {
            border-color: transparent transparent transparent var(--purple-hover);
        }

    /* Active/Inactive variants */
    .tag-pennant.inactive {
        background: var(--medium-gray);
        opacity: 0.7;
    }

        .tag-pennant.inactive::after {
            border-color: transparent transparent transparent var(--dark-gray);
        }


/*############# TAGS - Price Tag Style #############*/
.tag-price {
    display: inline-block;
    position: relative;
    background: var(--pansy-blue);
    color: var(--dark-gray);
    padding: 6px 12px 6px 24px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-left: 8px;
    border-radius: 3px;
}

    .tag-price::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 50%;
        transform: translateY(-50%);
        width: 12px;
        height: 12px;
        background: white;
        border-radius: 50%;
    }

    /* System tag variant */
    .tag-price.system {
        background: var(--light-purple);
    }

    /* Active/Inactive variants */
    .tag-price.inactive {
        background: var(--medium-gray);
        opacity: 0.7;
    }

    /* Alternative with ring/hole effect */
    .tag-price.ring::before {
        background: transparent;
        border: 2px solid white;
        width: 12px;
        height: 12px;
    }



/*~~~~~~~~~~~~~~~~~~ SITE WIDE INPUTS & CONTROLS ~~~~~~~~~~~~~~~~~~*/



/*MANAGE PROFILE PHONE*/
.phone-2digit-input {
    width: 2.75rem;
}

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

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







.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);*/
/*}*/
