.tab-list button {
  transition: all 0.2s;
  font-family: Raleway, sans-serif;
  border: none;
  cursor: pointer;
  padding: 8px 16px;
  min-width: 100px;
  font-weight: 600;
  background-color: #2969bd;
  color: white;
  height: 100%;
  border-radius: 5px 5px 0px 0px;
}

.tab-list button:hover {
  background-color: #0094ff;
}

.tab-list button[active] {
  cursor: default;
  pointer-events: none;
  background-image: none;
  background-color: #f0f0f0;
  color: black;
}

.tab-navigator {
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
}

.tab-content {
  display: inline;
  width: fit-content;
  background-color: #f0f0f0;
  padding: 10px;
}

.tab-list {
  display: flex;
  list-style: none;
  list-style-type: none !important;
  padding: 0;
  margin: 0 !important;
  gap: 10px;
  overflow-x: auto;
}

.tab-list li {
  margin: 0 !important;
}
