body {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  color: #000000;

  /* Style the tab */
.tab {
  overflow: hidden;
  border: 0px solid #000000;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
}

/* Style the buttons inside the tab */
.tab button {
  font-family: "Lato", sans-serif;
  font-weight: 700;
  background-color: inherit;
  border: none;
  outline: 1px;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

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

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 0px 0px;
  border: 0px solid #ccc;
  border-top: none;
  text-align: center;
  color: inherit;         /* Prend la même couleur que le texte parent */
  text-decoration: none;  /* Supprime le soulignement */
}
}
