.paginationSkeleton {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.skeletonItem {
  width: 50px;
  height: 40px;
  margin: 0 5px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: 5px;
}

@keyframes skeleton-loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
