table{
  margin: 0 auto;
  max-width: 600px;
}
table th,
table td {
  border: 1px solid blue;
  padding: 7px 15px;
}
.pagenations-wrapper {
  width: 96%;
  max-width: 450px;
  margin: 30px auto;
  padding: 6px;
  background: #f0f0f0;
  border-radius: 15px;
  text-align: center;
}
.pagenations-wrapper li {
  display: inline-block;
  margin: 5px;
  padding: 5px;
  width: 1.5rem;
  height: 1.5rem;
  background: #f0f0f0;
  text-decoration: none;
  background: linear-gradient(145deg, #d3d2d2, #b1b0b0);
  box-shadow: 5px 5px 5px #a7a7a7, -5px -5px 5px #e3e1e1;
  border-radius: 50%;
  text-align: center;
  transition: 0.3s;
}
.pagenations-wrapper li.next,
.pagenations-wrapper li.prev {
  width: 3rem;
  border-radius: 20px;
  font-weight: bold;
}
.pagenations-wrapper li.next a,
.pagenations-wrapper li.prev a {
  color: #0084b9;
}
.pagenations-wrapper li:hover,
.pagenations-wrapper li.active {
  color: #f0f0f0;
  font-weight: bold;
  text-shadow: 1px 1px 1px #333;
  background: linear-gradient(145deg, #cacaca, #f0f0f0);
  box-shadow: 5px 5px 5px #bebebe, -5px -5px 5px #ffffff;
}
.pagenations-wrapper li.active a {
  color: #f0f0f0;
  font-weight: bold;
}
.pagenations-wrapper li.dots {
  color: #333;
  font-weight: bold;
  background: #f0f0f0;
  box-shadow: none;
  pointer-events: none;
}
.pagenations-wrapper li a {
  text-decoration: none;
  color: #029ad6;
  font-weight: bold;
}
.pagenations-wrapper li:hover a {
  color: #f0f0f0;
}
@media (max-width: 480px) {
  .pagenations-wrapper {
    padding: 10px 5px;
  }
  .pagenations-wrapper li.next,
  .pagenations-wrapper li.prev {
    width: 2.5rem;
  }
  .pagenations-wrapper li {
    width: 1.2rem;
    height: 1.2rem;
    margin: 2px;
  }
}