.tableWrapper {
    padding: 20px;
    background: #EEEEEE;
    border-radius: 8px;
}

#refreshContainer {
    height: 340px;
    /* Set a fixed height or adjust as needed */
    overflow-y: scroll;
    padding: 10px;
    position: relative;
    /* Needed for positioning the loading indicator */
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    align-items: center;
   
}
#refreshContainer .recordBg{
    background-color: white;
    border-radius: 5px;
    width: 100%;
    padding: 15px 35px;
}
#refreshContainer th{
    color: #053B7A;
    font-family: DinProBlack;
    font-weight: 900;

}
#loading-indicator {
    display: none;
    /* Initially hidden */
    text-align: center;
    padding: 10px;
}

/* Style for "Swipe to Load More" text */
#swipe-to-load,
#loading-text {
    text-align: center;
    padding: 10px;
    font-weight: bold;
    color: #333;
    font-size: 15px;
    padding-top: 5px;
    width: 100%;
    background-color: white;
}



/* Style for the filter dropdown */



.custom-select1 {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 5px 15px;
    font-size: 16px;
    width: 250px;
    background: #F4F4F4;
    cursor: pointer;
    font-weight: 700;
    color: #636363;
    border: none;
    border-radius: 12px;
    margin-left: 1rem;
}
.select-arrow {
    position: absolute;
    top: 3px;
    right: 19px;
    width: 0;
    height: 0;
    transform: rotate(0deg);
    transition: transform 0.3s ease;
    font-size: 12px;
}

.select-arrow:after{
    content: "\f078";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
}

.selectContainer.expanded .select-arrow:after {
    /* transform: rotate(180deg); */
    content: "\f077";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    
}

.selectContainer {
    width: 100%;
    /* background-color: #ECEBEB; */
    font-size: 16px;
    text-align: left;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    color: #212529;

}

.selectWrapper {

    position: relative;

}

#loading-text {
    display: none;
}

option{
    color: black;
}