.pagination-section {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	align-items: center;
	margin-top: 16px;
	padding: 12px 0
}

.pagination-info {
	display: flex;
	align-items: center
}

.total-count {
	font-size: 14px;
	color: #666
}

.pagination-controls {
	display: flex;
	align-items: center;
	gap: 8px
}

.page-btn {
	background: #f5f5f5;
	border: 1px solid #ddd;
	padding: 6px 10px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: all .3s;
	min-width: 32px;
	text-align: center
}

.page-btn:hover {
	background: #e0e0e0
}

.page-btn.active {
	background: #71b199;
	color: #fff;
	border-color: #71b199
}

.next-btn {
	background: #71b199;
	color: #000;
	border: 1px solid #71b199;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 14px;
	cursor: pointer;
	transition: all .3s
}

.next-btn:hover:not(:disabled) {
	background: #0b775f;
	border-color: #0b775f
}

.next-btn:disabled {
	background: #ccc;
	border-color: #ccc;
	cursor: not-allowed
}
