.tabs__buttons {
  display: flex;
  gap: 8px;
  margin-bottom: 1rem;
}

.tabs__button {
  padding: 8px 12px;
  cursor: pointer;
  border: 1px solid #ccc;
  background: #f5f5f5;
}

.tabs__button.is-active {
  background: #fff;
  border-bottom: 2px solid #000;
}

.tabs__panel {
  display: none;
}

.tabs__panel.is-active {
  display: block;
}
