.login-btn-container{
    width: 70%;
    margin: 0 auto;

}
.login-btn-container button {

    margin-bottom: 10px;
    border: 0;
}
.login-btn-container button i{
    color:#fff;
    font-size: 24px;
    margin-right: 10px;
}


.chartDetails::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    background-color: #fff;
}

.chartDetails::-webkit-scrollbar {
    height: 3px;
    background-color: #fff;
}

.chartDetails::-webkit-scrollbar-thumb {
    background-color: #0194fe;
}




.chartDetails::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px #fff;
    background-color: #fff;
}

.custom-legend::-webkit-scrollbar {
    height: 0px;
    background-color: #fff;
}

.custom-legend::-webkit-scrollbar-thumb {
    background-color: #0194fe;
}


.ui-selectmenu-button.ui-button{
    width: 100%!important;
    height: 50px;

    margin-bottom: 10px;
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, 0.08);
    padding-top: 17px;
    border: 0;
    background: #fff;
}

.ui-selectmenu-button.ui-button:hover, .ui-selectmenu-button.ui-button:focus {

    background: #fff!important;
    border: 0!important;
    font-weight: normal;
    color: #2b2b2b;
}

.ui-menu .ui-menu-item-wrapper {
    position: relative;
    padding: 8px 1em 8px 0.4em!important;
}


.custom-legend {

    top: 20px;
    right: 20px;
    background-color: white;

    padding: 10px;
    overflow-x: scroll;
    display: flex;
}
.legend-item span{
    display: flex;
}
.legend-text{
    margin-left: 5px;
    width:max-content;
}
.legend-item{
    display: inline-flex;
    align-items: center;
    margin-left: 10px;

}
.legend-color {
    width: 50px;
    height: 20px;
    display: inline-block;
}

#recordCount{
    position: absolute;
    font-size: 14px;
    font-style: italic;
}

.cursor-pointer {
    cursor: pointer;
}

.number-bg {
    background: red;
    display: inline-flex;
    padding: 2px;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    margin-right: 12px;
    align-items: center;
    justify-content: center;
    color: white;
}

#bottomBarContainer {
    background: rgba(68, 138, 255, 0.7);
    position: fixed;
    bottom: 0;
    width: 100%;
    padding: 10px;
}

#exportFormatButtons{
    position: absolute;
    bottom: 50px;
    right: 15px;
    display: flex;
    flex-direction: column;
    width: auto;
    padding: 0;
}

.bg-bb-blue {
    background: rgba(68, 138, 255);
    border-color: rgba(68, 138, 255);
    color: white;
}

#btnExport {
    width: 100%;
}

/* Full-screen transparent overlay */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5); /* Semi-transparent background */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Ensures it stays on top of other content */
}

/* Loader styles */
.loader {
    position: static;
    border: 12px solid #f3f3f3; /* Light grey */
    border-top: 12px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
}

 /* Animation for spinning */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}