#paginationSearch {
	width: 100%;
	margin-top: 16px;
}

#paginationResults {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Boutons */
#paginationResults button {
	min-width: 36px;
	height: 36px;
	padding: 0 12px;
	border-radius: 8px;
	border: 1px solid #d0d5dd;
	background-color: #fff;
	color: #344054;
	font-size: 14px;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

/* Hover */
#paginationResults button:hover:not(:disabled) {
	background-color: #f2f4f7;
	border-color: #cbd5e1;
}

/* Active */
#paginationResults button.active_filter {
	background-color: #0d3f3c;
	border-color: #0d3f3c;
	color: #fff;
	cursor: default;
}

#paginationResults button.active_filter:hover {
	background-color: white;
	border-color: #0d3f3c;
	color: #0d3f3c;
	cursor: default;
}

/* Disabled */
#paginationResults button:disabled {
	opacity: 0.45;
	cursor: not-allowed;
}

/* Dots */
#paginationResults .dots {
	padding: 0 6px;
	color: #667085;
	font-size: 14px;
	user-select: none;
}

/* Mobile */
@media (max-width: 480px) {
	#paginationResults button {
		min-width: 32px;
		height: 32px;
		font-size: 13px;
	}
}

.paginationSearch{
	border-top: 1px solid gray;
    padding-top: 10px;
}

.paginationResult{
	padding:0;
	margin:0 auto;
	display:flex;
	justify-content:end;
	align-items:center;
	gap:6px;
}
