/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
    color: #2b2323 !important; /* Text color */
}

/* Global Styles */
html,
body {
    height: 100vh;
    background-image: linear-gradient(109.6deg, rgb(243, 245, 246) 100%, rgb(243, 245, 246) 50%); /* Background gradient */
    overflow-x: hidden;
    font-size: 18px;
    margin: 0px;
    padding: 0px;
    font-family: Arial, sans-serif;
}

.content {
    margin-top: 80px; /* Space for the fixed header */
    padding: 0px;
}

.header {
    position: fixed;
    width: 100%;
    z-index: 100;
    margin: 0px;
    padding: 0px;
}

/* Graph */
.dash-graph.my-graph {
    background-color: rgb(255, 255, 255) !important; /* Graph background color */
    border-radius: 11px;
}

/* Date Range Picker Input */
.DateRangePickerInput {
    background-color: rgba(0,0,0,0) !important; /* Date Range Picker background color */
    border-color: lightgray !important; /* Date Range Picker border color */
}

/* Navigation Styles */
.my-nav {
    font-size: 18px !important;
    background-color: rgb(243, 245, 246) !important; /* Navigation background color */
    color: white !important; /* Navigation text color */
    height: 100vh;
}

.my-nav .nav-link {
    color: black !important; /* Navigation link text color */
}

.nav-pills .nav-link.active {
    background-color: rgb(219, 156, 68) !important; /* Active navigation link background color */
    color: white !important; /* Active navigation link text color */
}

/* Banner Styles */
.hr-banner {
    background-color: rgb(219, 156, 68) !important; 
    height: 80px;
}

.banner {
    background-color: rgb(219, 156, 68) !important; 
    font-size: 15px;
}

/* Footer Styles */
.hr-footer {
    height: 5px;
}

.footer {
    font-size: 15px;
}

/* Select Styles */
.Select-menu-outer,
.Select-control {
    background-color: white !important; /* Select background color */
    border-color: #ccc !important; /* Select border color */
}

.Select-value {
    background-color: lightgray !important; /* Select value background color */
}

/* Guide Styles */
.guide {
    text-align: left !important;
    font-size: 16px !important;
    font-weight: 100 !important; /* Guide text styles */
}

.div-hyperpar,
.my-button {
    border: solid 1px #000000 !important; /* Button and div border */
    background-color: rgb(200, 200, 200);
}

.my-button:hover,
.my-button:active {
    background-color: rgb(160, 160, 160) !important; /* Button on hover/active */
}

.dash-sk-circle .dash-sk-child:before {
    background-color: rgb(219, 156, 68) !important; /* Loading circle color */
}

/* Table Styles */
.table,
.table>thead {
    background-color: white !important; /* Table background color */
    font-size: 18px;
}

.table {
    border: solid 1px gray !important; /* Table border */
    border-radius: 15px !important; /* Table border radius */
}

.table>thead {
    vertical-align: middle !important;
    text-align: center;
    background-color: lightgray!important; /* Table header background color */
}

.table>tbody {
    font-size: 18px;
    text-align: left;
}

.col-fin-dropdown {
    margin: 0px 5px 0px 0px !important;
    padding: 0px !important;
}

.row-content {
    margin-top: 20px;
}

/* RangeSlider tooltip styles */
.rc-slider-tooltip {
    background-color: #d5d5d5 !important; 
    color: #000000 !important;            
}
.rc-slider-tooltip-inner {
    background-color: inherit !important;
    color: inherit !important;
}

/* restyle radio items */
.radio-group .form-check {
    padding-left: 0;
}

.radio-group .btn-group > .form-check:not(:last-child) > .btn {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.radio-group .btn-group > .form-check:not(:first-child) > .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -1px;
}

/* Base button style */
.radio-group .btn-group > .form-check > .btn {
    border: 1px solid black !important;
    color: black;
    background-color: white;
}

/* Selected/active state */
.radio-group .btn-group > .form-check > .btn.active,
.radio-group .btn-group > .form-check > input[type="radio"]:checked + .btn {
    background-color: rgb(219, 156, 68) !important;
    color: white;
    border-color: black !important;
}

/* ccmc element guidelines */

.ccmc_tool_menu{
            margin-left: 0px;
            margin-right: 0px;
            padding-right: 0px;
            padding-left: 0px;
            position: fixed;
            top: 0px;
            width: 100%;
            height: 70px;
            box-shadow: 0 3px 6px rgb(0 0 0 / 0.15);
            display: flex;
            flex-direction: row;
            align-items: center; 
            width:100%; 
            background:rgba(231,153,44, 1.0);
        }

.ccmc_link {
            margin: 0px;
            padding: 0px;
            line-height: 0px;
        }

.ccmc_link img {
    height: 70px;
    padding: 0px;
    margin: 0px;
}
    
.menu_button {
    display: flex;
    outline: none;
    cursor: pointer;
    border: none;
    border-left: 1px solid blanchedalmond;
    border-right: 1px solid blanchedalmond;
    align-items: center;
    text-align: center;
    
    vertical-align: top;
    padding: 5px 5px 5px 5px;
    background-color: #00000000;
    font-size: 18px;
    letter-spacing: 0.16px;
    height: 70px;
    line-height: 1.29;
    color: blanchedalmond !important;
    font-weight: 600;
    transition: background 70ms cubic-bezier(0,0,.38,.9),box-shadow 70ms cubic-bezier(0,0,.38,.9),border-color 70ms cubic-bezier(0,0,.38,.9),outline 70ms cubic-bezier(0,0,.38,.9);             
}

.menu_button:hover {	 
    background-color: #00000030;
    color: #fff;
}

.menu_button.active {	 
    background-color: #00000030;
    color: #fff;
}