.pagination-links {
	display: flex;
	justify-content: space-between;
	margin-top: 20px; /* Adjust as needed */
}

.pagination-links .prev-page,
.pagination-links .next-page {
	width: 50%; /* Each link takes up half of the container */
	text-align: left; /* For left alignment of previous page link */
}

.pagination-links .next-page {
	text-align: right; /* For right alignment of next page link */
}

.pagination-links a {
	text-decoration: none;
	color: blue; /* Default link color #333*/
	background-color:lightyellow;
	font-size: 1.5rem;
}

.pagination-links a:hover {
	text-decoration: underline;
}  