.pagination {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
}

.pagination a.active {
  background-color: orange;
  color: white;
  font-weight: bold;
  border-radius: 4px;
}

.pagination a:hover:not(.active) {
	background-color: #ddd;
	border-radius: 4px;
}

a.inactiveLink {
   pointer-events: none;
   cursor: default;
   color: gray;
}

