
/* 分页容器 */
.pagination-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

/* 分页按钮 - 统一高度44px */
.pagination-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 44px;
  padding: 0 20px;
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  color: #e9d5ff;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-sizing: border-box;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pagination-btn:hover:not(.disabled) {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.pagination-btn.disabled {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgb(124 58 237 / 0%) 100%);
  border-color: rgba(60, 40, 80, 1);
  cursor: not-allowed;
  opacity: 0.5;
}

.pagination-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.pagination-selector {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 16px;
  background: rgba(139, 92, 246, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 5px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  box-sizing: border-box;
}

.page-label {
  font-size: 14px;
  color: #e9d5ff;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

.page-select {
  height: 32px;
  padding: 0 10px;
  background: rgba(139, 92, 246, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 5px;
  color: #e9d5ff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
  min-width: 60px;
  text-align: center;
  box-sizing: border-box;
  appearance: none;
}

.page-select:hover {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
}

.page-select:focus {
  background: rgba(139, 92, 246, 0.3);
  border-color: rgba(139, 92, 246, 0.6);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.page-select option {
  background: #1a1f2e;
  color: #e9d5ff;
}

/* 响应式设计 */
@media (max-width: 640px) {
  .pagination-container {
    padding: 10px;
    margin-bottom: 15px;
  }

  .pagination-btn {
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .pagination-selector {
    height: 40px;
    padding: 0 10px;
    margin-left: 10px;
    margin-right: 10px;
  }

  .page-select {
    height: 28px;
    padding: 0 8px;
    font-size: 13px;
    margin-left:5px;
    margin-right:5px;
  }

  .page-label {
    font-size: 13px;
  }
}
