
 .table {
  border-collapse: collapse;
  border-spacing: 0;
  
  width: 100%;
  border: 2px solid #ddd;
   margin-left:5px;
  margin-right:5px;
  
}
 .left{
	 position: absolute;
	 
	 width: 300px;
 }
  .right{
	 position: absolute;
	 right:0px;
	 width: 1000px;
 }
 </style>
  
   <style>
#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
}

#customers tr:nth-child(even){background-color:;}

#customers tr:hover {background-color: green;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #04AA6D;
  color: white;
}
