table{
  width:100%;
  table-layout: fixed;
}
.tbl-header{
  background-color: rgba(255,255,255,0.3);
 }
.tbl-content{
  height:200px;
  overflow-x:auto;
  margin-top: 0px;
  border: 1px solid rgba(255,255,255,0.3);
}
.tbl-header th {
  padding: 10px 10px;
  text-align: left;
  font-weight: bold;
  font-size: 11px;
  color: #fff;
  text-transform: uppercase;
  background: #2d2e33;
  border-right: 1px solid #bbb;
  text-align: center;
}
.tbl-content td {
  padding: 10px;
  text-align: left;
  vertical-align:middle;
  font-weight: 300;
  font-size: 11px;
  color: #666666;
  border-bottom: solid 1px rgba(255,255,255,0.1);
  font-weight: bold;
  text-align: center;
}

.tbl-content tr {
  cursor: pointer;
}

.tbl-content tr:nth-child(even) {
  background: #eeeff2;
}

.tbl-content tr:hover {
  background: #d0ceca;
}

/* demo styles */

@import url(https://fonts.googleapis.com/css?family=Roboto:400,500,300,700);
.responsive-table{
  background: -webkit-linear-gradient(left, #E77817, #ed8c3d);
  background: linear-gradient(to right, #ffffff, #ffffff);
  font-family: 'Roboto', sans-serif;
  border: 1px solid black;
}


/* follow me template */
.made-with-love {
  margin-top: 40px;
  padding: 10px;
  clear: left;
  text-align: center;
  font-size: 10px;
  font-family: arial;
  color: #fff;
}
.made-with-love i {
  font-style: normal;
  color: #F50057;
  font-size: 14px;
  position: relative;
  top: 2px;
}
.made-with-love a {
  color: #fff;
  text-decoration: none;
}
.made-with-love a:hover {
  text-decoration: underline;
}


/* for custom scrollbar for webkit browser*/

::-webkit-scrollbar {
    width: 6px;
} 
::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
} 
::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
}