.tabs-wrapper {
  max-width: 1200px;
  margin: 0px auto;
  font-family: inherit;
}

.tab-buttons {
  display: flex;
  gap: 0px;
  border-bottom: none;
}

.tab-btn {
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-bottom: none;
  background: #f5f5f5;
  color: #000000;
  cursor: pointer;
  border-radius: 4px 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  margin-right: 2px;
}

.tab-btn:hover {
  background: #ede8fe;
  color: #6528f7;
}

.tab-btn.active {
  background: #6528f7;
  color: #ffffff;
  border-color: #6528f7;
  font-weight: 600;
}

.tab-panel {
  display: none;
  padding: 0px;
  margin: 0px;
  border-top: 1px solid #6528f7;
  background: #ffffff;
  color: #000000;
}

.tab-panel.active {
  display: block;
}