#player-pagination-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top-width: 1px;
  border-color: rgb(229 231 235);
  padding-left: 1rem;
  padding-right: 1rem;
  width: 100%;
}

.numbers-container {
  display: none;
}

.previous-button {
  margin-top: -1px;
  display: flex;
  width: 0px;
  flex: 1 1 0%;
}

.previous-button a {
  display: inline-flex;
  align-items: center;
  border-top-width: 2px;
  border-color: transparent;
  padding-top: 1rem;
  padding-right: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(107 114 128);
}

.previous-button a:hover {
  border-color: rgb(209 213 219);
  color: rgb(55 65 81);
}

.previous-button a svg {
  margin-right: 0.75rem;
  height: 1.25rem;
  color: rgb(156 163 175);
}

.next-button {
  margin-top: -1px;
  display: flex;
  width: 0px;
  flex: 1 1 0%;
  justify-content: flex-end;
}

.next-button a {
  display: inline-flex;
  align-items: center;
  border-top-width: 2px;
  border-color: transparent;
  padding-top: 1rem;
  padding-left: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(107 114 128);
}

.next-button a:hover {
  border-color: rgb(209 213 219);
  color: rgb(55 65 81);
}

.next-button a svg {
  margin-left: 0.75rem;
  height: 1.25rem;
  color: rgb(156 163 175);
}

.selected-page {
  display: inline-flex;
  align-items: center;
  border-top-width: 2px;
  border-color: #122d3c;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #122d3c;
}

.unselected-page {
  display: inline-flex;
  align-items: center;
  border-top-width: 2px;
  border-color: transparent;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgb(107 114 128);
}
.unselected-page:hover {
  border-color: rgb(209 213 219);
  color: rgb(55 65 81);
}

@media (min-width: 640px) {
  .player-pagination-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

@media (min-width: 768px) {
  .numbers-container {
    display: flex;
    margin-top: -1px;
  }
}

/* disable a tag */
a.disabled {
  pointer-events: none;
  cursor: default;
}
