/* Card visuals live in style.css (.job-card etc). */
/* This file only owns the AJAX loading state and the pagination control. */

.cp-jobs-results {
	transition: opacity 150ms ease;
}
.cp-jobs-results.is-loading {
	opacity: 0.5;
	pointer-events: none;
}

.cp-jobs-pagination {
	margin-top: 1.5em;
	display: flex;
	flex-wrap: wrap;
	gap: 0.25em;
	align-items: center;
}
.cp-jobs-pagination__link {
	display: inline-block;
	padding: 0.4em 0.7em;
	border: 1px solid #d0d0d0;
	border-radius: 3px;
	color: inherit;
	text-decoration: none;
	font-size: 0.9em;
	line-height: 1;
}
.cp-jobs-pagination__link:hover {
	background: #f4f4f4;
}
.cp-jobs-pagination__link--current {
	background: #222;
	color: #fff;
	border-color: #222;
}
.cp-jobs-pagination__ellipsis {
	padding: 0 0.4em;
	opacity: 0.6;
}
