#customTableDiv{
    position: relative;
    width: 100%;
    align-items: center;
    margin-top: 10px;
    min-width: 900px;
   
}
#customTable{
    width: 100%;
    align-items: center;
    margin-top: 10px;
}
#customTable thead{
    background-color: #b3a7a7;
    height: 40px;
    position: relative;
}
#customTable td, #customTable th{
    border-right: 1.5px solid black;
    z-index: 1;
    padding-left: 5px;
}

#customTable td{
    font-weight: 400;
    border-bottom: 1.5px solid black;
    z-index: 1;
}
#customTable tr{
    height: 40px;
}
#customTable .evenTableRow{
    background-color: #e6dada;
}
#customTable .errorTableRow{
    background-color: rgb(206, 34, 34);
    font-weight: 600;
    text-align: center;
}
#customTable .networkErrorTableRow{
    background-color: rgb(189, 206, 34);
    font-weight: 600;
    text-align: center;
}
#tableRowCountInfo{
    font-weight: 600;
    margin: 10px;
}
#loadingIcon{
    position: absolute;
    height: 100%;
    width: 100%;
    text-align: center;
    z-index: 100;
    top:0;
    left:0;
    right:0;
    bottom:0;
    display: none;
   
}
.loadingIcon span{
    height: 200px;
    width: 200px;
    
}
#tableSection{
    margin-top: 50px;
    min-height: 60vh;
}
#tableSearchInput{
    height: 40px;
}
#table{
    overflow-x:auto;
    margin-top: 30px;
    overflow-y: unset;  
}
#pagination{
    text-align: center;
    padding: 5px;
    font-weight: 600;
    width: 100%;
    position: relative;
}
#tableSearch{
    padding-top: 5px;
}
#tableSearch input{
    width: 300px;
    padding-left: 5px;
    font-weight: 600;
    font-size: 18px;
}
#tableSearch input, #tablePagination select{
    border-radius: 5px;
    border: 1px solid black;
    min-height: 30px;
}








/* MEDIA QUERY */

@media screen and (min-width: 200px) and (max-width: 300px) {
#tableSearch #tableSearchInput {
    width: 90%;
    height: 30px;
}
#tableSearch{
    display: flex;
    justify-content: end;
    align-items: center;
}

}

@media screen and (min-width: 301px) and (max-width: 400px) {
#tableSearch #tableSearchInput {
    width: 70%;
    height: 35px;
}

}

@media screen and (min-width: 401px) and (max-width: 500px) {
#tableSearch #tableSearchInput {
    width: 60%;
    height: 35px;
}

}

@media screen and (min-width: 501px) and (max-width: 600px) {
#tableSearch #tableSearchInput {
    width: 50%;
    height: 35px;
}
}

@media screen and (min-width: 601px) {
#tableSearch #tableSearchInput {
    width: 300px;
}
}

@media screen and (min-width: 200px) and (max-width: 1200px) {
#tableSection{
    min-height: 55vh;
}
}