.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 20px 0;
  font-family: Arial, sans-serif;
}

.step-links a,
.step-links span {
  margin: 0 5px;
  padding: 8px 12px;
  text-decoration: none;
  color: #007bff;
  border: 1px solid #ddd;
  border-radius: 4px;
  transition: background-color 0.3s, color 0.3s;
}

.step-links a:hover {
  background-color: #007bff;
  color: #fff;
}

.step-links .current {
  font-weight: bold;
  color: #333;
  background-color: #e9ecef;
  border-color: #dee2e6;
  cursor: default;
}

.step-links a {
  background-color: #fff;
}

.step-links a:first-child {
  margin-right: 15px;
}

.step-links a:last-child {
  margin-left: 15px;
}

.step-links a[disabled] {
  pointer-events: none;
  color: #ccc;
  border-color: #ddd;
  background-color: #f8f9fa;
}
