
.tab {
  overflow: hidden;
}

/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px;
  transition: 0.3s;
  font-size: 17px;
  text-align: center;
  width: 50%;
}

/* Change background color of buttons on hover */
.tab button:hover {
    border-bottom: 2px solid #3c3a8f !important;
}

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

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border-top: none;
}