/* Tabs */
.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 5px;
  justify-content: center;
}

.tab-btn {
  padding: 10px 20px;
  border: none;
  background: #ddd;
  cursor: pointer;
  border-radius: 5px;
  transition: 0.3s;
}

.tab-btn.active {
  background: #000;
  color: #fff;
}

/* Content */
.tab-content {
  display: none;
  background: #fff;
  padding: 20px;
  border-radius: 5px;
}

.tab-content.active {
  display: block;
}
