/* Style the tab */
.tab1 {
  display: flex;
  column-gap: 0.25em;
  overflow: hidden;
  border: 0px solid #fff;
  border-radius: 0px;
  background-color: #fff;
  margin-bottom: 14px;
}

/* Style the buttons inside the tab */
.tab1 button {
  background-color: #f5f5f5;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 6px 8px;
  margin: 0 2px 0 2px;
  border-radius: 4px;
  transition: 0.6s;
}

/* Change background color of buttons on hover */
.tab1 button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab1 button.active {
  background-color: #880000;
  color: #fff;
}

/* Style the tab content */
.tabcontent1 {
  display: none;
  padding: 0;
  border-radius: 4px;
  border-top: none;
  -webkit-animation: fadeEffect 1s;
  animation: fadeEffect 0.6s;
}