.pagination-container ul,
.pagination-container li {
  margin: 0;
  padding: 0;
}

.pagination-container {
  display: flex;
  align-items: center;
  max-width: 100%;
  justify-content: center;
}

.pagination-info {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-item {
  min-width: 18px;
  padding: 0 5px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  text-decoration: none;
  color: #000;
}

.page-item:hover:not(.active):not(.disabled) {
  background-color: #f0f0f0;
  border-color: #c0c0c0;
}

.page-item.active {
  color: #42c583;
  border-color: #42c583;
}

.page-item.disabled {
  color: #aaa;
  cursor: not-allowed;
}

.page-size-selector {
  margin-right: 10px;
}

.page-size-selector select {
  height: 30px;
  padding: 0 30px 0 10px;
  border: 1px solid #dfdfdf;
  border-radius: 3px;
  background-color: white;
  font-size: 14px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: calc(100% - 8px) center;
  background-size: 16px;
}

.page-size-selector select:hover {
  border-color: #c0c0c0;
}

.page-size-selector select:focus {
  border-color: #42c583;
}

.page-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.ellipsis {
  color: #999;
  cursor: default;
}
