.tab-buttons {
  display: flex;
  margin: 20px 0 20px 0;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}

.tab-button {
  display: flex;
  justify-content: center;
  padding: 10px 20px;
  border: none;
  background: var(--global-palette3);
  cursor: pointer;
  border-radius: 5px;
  color: white;
  min-width: 120px;
  font-size: 18px;
}

.tab-button:hover {
  color: black;
  background: var(--global-palette1);
}

.tab-button.active {
  background: var(--global-palette2);
  color: white;
}

.tab-content {
  display: none;
}

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

.rankings-page-loading-gif {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px;
}

.rankings-page-loading-gif img {
  width: 150px !important;
  height: auto !important;
}

.rankings-page-scroll-lock {
  scroll-behavior: auto !important;
}
