/* Pagination Controls */
.pagination-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin-top: 30px;
  padding: 20px 0;
}

.pagination-btn {
  padding: 12px 24px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.3s;
  min-width: 120px;
}

.pagination-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.pagination-btn:active:not(:disabled) {
  transform: translateY(0);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: linear-gradient(90deg, #4a5568 0%, #2d3748 100%);
}

.pagination-info {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  min-width: 150px;
  text-align: center;
  user-select: none;
}

/* Alternative compact style */
.pagination-btn-compact {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  min-width: unset;
}

/* Page number buttons */
.pagination-pages {
  display: flex;
  gap: 8px;
}

.page-number-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  background: #1e293b;
  border: 2px solid #2d3748;
  border-radius: 8px;
  color: #e4e4e4;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.page-number-btn:hover:not(.active) {
  background: #2d3748;
  border-color: #667eea;
  transform: translateY(-2px);
}

.page-number-btn.active {
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Flame effect for pagination (optional) */
.pagination-controls.flame-effect {
  position: relative;
}