.paginationWrapper {
  display: inline-flex;
  white-space: nowrap;
  border-radius: 8px;
  gap: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  border: 1px solid #d5d9d9;
  background: #ffffff;
}

.moveFirstButton {
  font-weight: 600;
  font-size: 17px;
  margin-left: 10px;
  padding: 5px 0px;
  background-color: #ffffff;
  border: none;
}

.prevButton {
  font-weight: 600;
  font-size: 17px;
  padding: 0px 10px;
  margin: 8px 0px;
  background-color: #ffffff;
  border: none;
  border-right: 1px solid #d5d9d9;
  border-left: 1px solid #d5d9d9;
}

.nextButton {
  font-weight: 600;
  font-size: 17px;
  padding: 0px 10px;
  margin: 8px 0px;
  background-color: #ffffff;
  border: none;
  border-right: 1px solid #d5d9d9;
  border-left: 1px solid #d5d9d9;
}

.moveToLastButton {
  font-weight: 600;
  font-size: 17px;
  margin-right: 10px;
  padding: 5px 0px;
  background-color: #ffffff;
  border: none;
}

.lastPageButton {
  padding: 5px 15px;
  background-color: #ffffff;
  border: none;
  cursor: pointer;
}

@media (max-width: 786px) {
  .moveFirstButton,
  .moveToLastButton,
  .dots,
  .lastPageButton {
    display: none;
  }
  .prevButton {
    border-left: none;
  }
  .nextButton {
    border-right: none;
  }
}
