[data-tab-content] {
  display: none;
}

.active[data-tab-content] {
  display: block;
}

body {
  padding: 0;
  margin: 0;
  background-color: #F0F0F0;
}

.tabs {
  display: flex;
  width: 100%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid black;
}

.tab {
  cursor: pointer;
  padding: 10px;
  flex: 1;
  text-align: center;
  transition: background 0.3s;
}

.tab.active {
  background-color: #008080;
  color: white;
}

.tab:hover {
  background-color: #20B2AA;
}

.tab-content {
  margin-left: 20px;
  margin-right: 20px;
}