.tabs {
  font-family: sans-serif;
  max-width: 800px;
  margin: auto;
}

.tab-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.tab-button {
  padding: 10px 20px;
  border: none;
  background-color: #0a1b2b;
  color: #fff;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.tab-button.active {
  background-color: #00c6ff;
  color: #000;
}

.tab-content {
  display: none;
  padding: 20px;
  background: #f4f4f4;
  border-radius: 8px;
}

.tab-content.active {
  display: block;
}
