/* Style the tab */
.tab {
  overflow: hidden;
  border-bottom: 2px solid #ccc;
  margin-left: 2px;
  margin-right: 2px;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 10px 12px 3px 12px;
  margin-top: 5px;
  font-size: 14px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ccc;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: green;
  color: white;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: none;
}
