/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: inherit;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 12px 10px 8px;
  font-size: 16px;
}

.tab button.tablinks:first-child {
  margin-left: 20px;
}

/* Change background color of buttons on hover */
.tab button:hover {

}

/* Create an active/current tablink class */
.tab button.active {
  border-bottom: 3px solid #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 30px 20px 15px;
  border-top: none;
}
