/* Style the tab */
/* Style the buttons inside the tab */
.tab button {
  border-radius: 4px;
  background-color: #1b2945;
  border:none;
  color: #FFFFFF;
  text-align: left;
  font-size: 15px;
  padding:10px 20px;
  width: 80%;
  transition: all 0.5s;
  cursor: pointer;
  margin:8px 8px;
}

/* Change background color of buttons on hover */
.tab button:hover {
   background-color: #103682;
  box-shadow: 5px 5px 14px #000;
}

/* Create an active/current "tab button" class */
.tab button.active {
  background-color: #103682;
}

/* Style the tab content */
.tabcontent {
  float: left;
  padding: 0px 12px;
  border: 1px solid #ccc;
  color:#000;
  width: 100%;
  border: none;
  height: 100%;
}

#customers {
  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 8px;
  color: #000;
}

#customers tr:nth-child(even){background-color: #f2f2f2;}

#customers tr:hover {background-color: #ddd;}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  background-color: #12264e;
  color: white;
}
