 /* FIXED TABLE LAYOUT*/
 
 .fixed-table{
        
 }
 
.fixed-table .panel-body{
  padding: 0;
  overflow: auto;
  height:500px;
}
  
 .fixed-table table {
  border-collapse: collapse;
  table-layout: fixed;
  width:100%; 
  white-space: nowrap;
}
 
.fixed-table table td,.fixed-table table th{
    border: 1px solid black;
}

.fixed-table table th{
  width:20%;
} 

.fixed-table table td,.fixed-table table th {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left:5px;
}

.fixed-table table thead th:last-child {
  width:100%;
}   

.fixed-table table thead th{
  position: sticky;
}