.table {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    left: 50px;
    border-collapse: collapse;
    empty-cells: hide;
}

.table thead th {
  /*background: #82FFFF;*/
  background: #66E5FF;
  padding: 15px 10px; 
  color: #FFFFFF;
  text-align: center; 
  font-weight: bold;
}

.table tbody, table thead {
  border-left: 1px solid #EAECEE; 
  border-right: 1px solid #EAECEE;
}

.table tbody {
  border-bottom: 1px solid #EAECEE;
}
                      
.table tbody td, table tbody th {
  padding: 10px; 
  text-align: center;
  width: 200px;
}

.table tbody tr { 
  background: #888888;
  color: #FFFFFF;
}

.table tbody  tr:hover {
  background: #FFFFB2; 
  color: #111111;
}

.table tfoot td, table tfoot th, table tfoot tr {
  text-align: center; 
  background: #F8F5DC; 
  padding: 10px;
}
