.pagination {
	display: flex;
	justify-content: center;
	margin-top: 20px;
}

.pagination a,
.pagination span {
	display: inline-block;
	padding: 10px 15px;
	border-radius: 4px;
	margin-right: 10px;
	text-decoration: none;
	color: #555;
	background-color: #fff;
	border: 1px solid #ddd;
	transition: all 0.3s ease;
}

.pagination a:hover {
	background-color: #eee;
}

.pagination span.current {
	background-color: #589442;
	color: #fff;
	border-color: #589442;
}

.pagination a:first-child,
.pagination a:last-child {
	margin-right: 0;
}

.pagination a.disabled,
.pagination span.current {
	cursor: default;
}
