/* Pagination Styles */
.pagination {
  text-align: center;
  margin: 1rem 0;
  padding: 0.1rem;
}

.step-links {
  display: inline-flex;
  gap: 1rem;
  align-items: center;
  background: #222;
  padding: 0.2rem 0.2rem;
  border-radius: 5px;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}

.step-links a {
  color: #2a13ff;
  text-decoration: none;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.step-links a:hover {
  background: rgba(52, 152, 219, 0.1);
}

.current {
  font-weight: bold;
}

.pagination span {
  color: #666;
  font-size: 1rem;
}