* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 12px;
  margin-bottom: 50px;
}
.pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 16px;
  color: #4c4c4c;
  background-color: #fff;
  transition: all 0.3s;
  cursor: pointer;
  user-select: none;
}
.pagination-item:hover {
  border: 2px solid var(--toranj-primary-color);;
}
.pag-next,
.pag-prev {
  color: var(--toranj-primary-color);;
  transition: background-color 0.3s;
}
.pag-next {
  margin-right: 10px;
}
.pag-prev {
  margin-left: 10px;
}
.active {
  background-color: var(--toranj-primary-color);;
  color: #fff;
}
.disabled {
  background-color: #ffffff98;
  color: var(--toranj-primary-color);;
  cursor: not-allowed;
  pointer-events: none;
}

@media screen and (max-width: 576px) {
  .pagination-item {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 448px) {
  .pagination {
    gap: 6px;
  }
  .pagination-item {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .pag-next {
    margin-right: 5px;
  }
  .pag-prev {
    margin-left: 5px;
  }
}
