html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

/*scrollbar*/
/* The container (can be body or any other container element) */
body {
    overflow: auto; /* Enable scrolling */
}

    /* Style the scrollbar (Edge, Chrome, Safari) */
    body::-webkit-scrollbar {
        width: 10px;
    }

    body::-webkit-scrollbar-track {
        background: #f1f1f1;
    }

    body::-webkit-scrollbar-thumb {
        background: #888;
        border-radius: 10px;
    }

        body::-webkit-scrollbar-thumb:hover {
            background: #555;
        }


/*end scroll bar*/
button {
    margin-right: 10px;
    padding: 5px 10px;
    border: none;
    border-radius: 4px;
}

button {
    background-color: #efefef;
    color: #000000;
}

    button:hover {
        background-color: #0099FF;
        color: #fff;
        cursor: pointer;
    }

  

.nav-link.active {
    text-decoration: underline;
    text-decoration-color: #0099FF;
    text-decoration-thickness: 2px;
    text-underline-offset: 9px;
}
.chart {
    width: 100%;
    min-height: 380px; 
    position: relative;
    height: 72vh;
    overflow: hidden;
}

.rounded-border {
    border: 1px solid black;
    border-radius: 10px;
    width: 100%;
    height: 100%;
}
.nav-text {
    font-size: 13px;
}
.fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    height: 80vh;
    z-index: 9999; /* This may need to be adjusted based on your site's z-index usage */
}

.loader {
    margin: 0 0 2em;
    height: 100px;
    width: 20%;
    text-align: center;
    padding: 1em;
    margin: 0 auto 1em;
    display: inline-block;
    vertical-align: top;
}

/*
  Set the color of the icon
*/
svg path,
svg rect {
    fill: #0099FF;
}

@keyframes load {
    from {
        background-position: 200% 0;
    }

    to {
        background-position: -200% 0;
    }
}





/*tab like buttons*/
.tab_button {
    background: none;
    border: none;
    padding: 5px;
    font: inherit;
    cursor: pointer;
    outline: inherit;
}

    .tab_button:hover {
        text-decoration: underline;
        text-decoration-color: #0099FF;
        text-decoration-thickness: 2px;
        text-underline-offset: 9px;
        background-color: transparent;
        color:black;
    }

  /*  .tab_button:active {
        text-decoration: underline;
        text-decoration-color: #0099FF;
        text-decoration-thickness: 2px;
        text-underline-offset: 9px;
    }*/

.active_filters {
    text-decoration: underline;
    text-decoration-color: #0099FF;
    text-decoration-thickness: 2px;
    text-underline-offset: 9px;
    background-color: transparent;
    color: black;
}

#filters {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 30px;
    margin-top:3px;
}

    #filters label {
        font-size: 13px;
        font-weight:bold;
    }

    #filters select,
    #filters input[type="date"],
    #filters button {
        margin-right: 10px;
        padding: 5px 10px;
        border: none;
        border-radius: 4px;

    }

    #filters button {
        background-color: #efefef;
        color: #000000;
        font-size: 14px;
    }

   #filters button:hover {
            background-color: #0099FF;
            color: #fff;
            cursor: pointer;
        }


.dropdown {
    background-color: #eee;
    font-size: 12px;
}




/*loader*/
.loading {
    position: fixed;
    float: left;
    top: 50%;
    left: 50%;
    height: 100px;
    padding: 0px;
    width: 200px;
    margin-top: -50px;
    margin-left: -70px;
}

@keyframes loading {
    0% {
    }

    11% {
    }

    22% {
    }

    33% {
    }

    44% {
    }

    50% {
        height: 100px;
        margin-top: 0px;
    }

    55% {
    }

    66% {
    }

    77% {
    }

    88% {
    }

    99% {
    }

    100% {
    }
}

.loading .loading-1 {
    height: 10px;
    width: 10px;
    background-color: #00d4ff;
    display: inline-block;
    margin-top: 90px;
    -webkit-animation: loading 2.5s infinite;
    -moz-animation: loading 2.5s infinite;
    -o-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.loading .loading-2 {
    height: 10px;
    width: 10px;
    background-color: #15bce8;
    display: inline-block;
    margin-top: 90px;
    -webkit-animation: loading 2.5s infinite;
    -moz-animation: loading 2.5s infinite;
    -o-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 0.5s;
    animation-delay: 0.5s;
}

.loading .loading-3 {
    height: 10px;
    width: 10px;
    background-color: #31a4ee;
    display: inline-block;
    margin-top: 90px;
    -webkit-animation: loading 2.5s infinite;
    -moz-animation: loading 2.5s infinite;
    -o-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.loading .loading-4 {
    height: 10px;
    width: 10px;
    background-color: #1e63c7;
    display: inline-block;
    margin-top: 90px;
    -webkit-animation: loading 2.5s infinite;
    -moz-animation: loading 2.5s infinite;
    -o-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}

.loading .loading-5 {
    height: 10px;
    width: 10px;
    background-color: #182cd9;
    display: inline-block;
    margin-top: 90px;
    -webkit-animation: loading 2.5s infinite;
    -moz-animation: loading 2.5s infinite;
    -o-animation: loading 2.5s infinite;
    animation: loading 2.5s infinite;
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    -webkit-animation-delay: 1.25s;
    animation-delay: 1.25s;
}


 