/* === ANY ELEMENT OVERRIDE ===*/
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* === FULL PAGE ===*/
html,
body {
    height: 100vh;
    background-image: linear-gradient(109.6deg, rgb(0, 0, 0) 11.2%, #0b8491 91.1%);
    overflow-x: hidden;
    font-size: 18px;
}

.page-heading {
    font-size: 30px;
    color: #f6f6f6;
}

/* === dcc.Graph components ===*/
.nav-pills .nav-link.active {
    background-color: #042f33;
}

/* Dropdown style */
.Select-control, .Select-menu-outer {
    background-color: #042f33 !important;
    border-width: 1px;
    border-color: #042f33 !important;
    color: #f6f6f6;
    font-size: small;
  }

  /* Font color for placeholder text */
.Select-placeholder {
    color: #f6f6f6 !important; 
}

  /* Font color for search text */
.Select input{
    color: #f6f6f6 !important; 
}

/* Font color for selected value */
.Select-value-label {
    color: #f6f6f6 !important; 
}

.dropdown-title {
    color: #f6f6f6;
    font-size: small;
}

/* Date picker style */
.DateInput_input, .DateInput_input_1, .DateRangePickerInput {
    height: 36px;
    background-color: #042f33;
    color: #f6f6f6;
    font-size: 18px;
    border-width: 0px;
}

.guide {
    font-size: 17px;
    color: #f6f6f6;
    margin-left: 50px;
}

/* === LOADING COMPONENT ===*/
.dash-sk-circle .dash-sk-child:before {
    background-color: #3DED97 !important;
    box-shadow: 0 0 20px #3DED97 !important;
}

/* === ACCORDION COMPONENT ===*/
.my-accordion {
    background-color: transparent;
}

.my-accordion-item {
    background-color: transparent;
    border-width: 0px;
}

.accordion-button {
    background-color: transparent;
    font-size: medium;
    color: #f6f6f6;
}

.accordion-button:not(.collapsed) {
    background-color: #042f33;
    color: #f6f6f6;
    border-radius: 15px;
}

.accordion-button::after {
    -webkit-filter: grayscale(1) invert(1);
    filter: grayscale(1) invert(1);
}

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

.scroll {
    width:100%;
    overflow:scroll;
    /* border-radius: 15px; */
}

.row-title {
    color: #f6f6f6;
    font-size: x-large;
    font-weight: bold;
}

.footer-text {
    color: #f6f6f6;
    font-size: small;
}

/* Default font size for desktop and larger screens */
.header-title {
    font-size: xx-large;
    white-space: nowrap; /* Prevent line breaks on desktop if title is long */
}

.contact-message-text {
    font-size: x-large; /* Default for desktop and larger screens */
}

.logo-style {
    height: 80px;
    width: 80px;
}

/* Style for month and ytd images */
.image-style {
    height: 60px;
    width: 60px;
}

.offcanvas .btn-close {
    filter: invert(1);
}

.ag-theme-alpine {
    --ag-background-color: #c2d7d9;
    --ag-font-size: 12px;
}

.summary-text {
    color: #f6f6f6;
    font-size: large;
}

.scv-image-style {
    height: 60px;
    width: 60px;
    display: block;
    margin-top: 10px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
}

/* === RESPONSIVE STYLES === */
/* Adjustments for smaller screens */
@media (max-width: 768px) {
    .header-title {
        font-size: large;
        word-break: break-word; /* Allow long words to break to prevent overflow */
    }

    .contact-message-text {
        font-size: medium; /* Adjust for tablets/smaller desktops */
        padding: 8px; /* Slightly reduce padding */
    }

    .logo-style {
        height: 60px; /* Adjust logo size for smaller screens */
        width: 60px;
    }
    
    .row-title {
        color: #f6f6f6;
        font-size: medium;
        font-weight: bold;
        justify-content: center;
    }

    .summary-text {
        color: #f6f6f6;
        font-size: small;
    }
}