#mytable{
  position: relative;
  margin:auto;
  margin-top:50px;
  display: block;
  border: 1px solid rgb(88, 89, 92);
  border-radius: 5px;
  width: fit-content;
  color:rgba(255, 255, 255, 0.511)
}

#mytable .yScroll{
  position: relative;
  
  max-height: 80vh;
 
  padding-right: 20px;
  overflow-y:auto;


  background-color: rgb(49, 48, 48)
}
#mytable .xScroll{
  position: relative;
  width:fit-content;
  max-width:95vw;
  overflow-x: auto;

}
#mytable td{
  color:inherit;
}
#mytable table .hoverObj:hover{
  cursor:pointer;
}
#mytable table .hoverLabel{
  position: absolute;
  display:none;
  z-index: 2;
  top:25px;
  right:0;
  border:1px solid rgb(36, 36, 36);
  border-radius: 3px;
  
  background-color: rgba(55, 51, 51, 0.808);
  width:100px;
  height:fit-content;
  font-size: 10px;
  font-family:'Arial, Helvetica, sans-serif';

  padding: 5px;
  
  }
  #mytable table .filter .hoverLabel{
    left:20px;
  }
#mytable table .sort_button_container img:hover{
 background-color: gray;
 width:24%;

}
#mytable table .filter{
  width:30px;
  height: 100%;
}
#mytable table .filter img{
  position: absolute;

  width:15px;
  left:15px;
  top:15px;
}
#mytable table .filter img:hover{
  position: absolute;
  width:20px;
  rotate: -5deg;

}
#mytable table .evenRow {
  z-index: 1;
  background-color: rgb(53, 55, 56);
}