#page {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
	flex-wrap: wrap;
}
#page button {
	border: none;
	background: none;
	cursor: pointer;
	height: 32px;
	min-width: 32px;
	border-radius: 6px;
	color: #1f2328;
}
#page button:hover {
	background: #f2f3f4;
}
#page button.current {
	color: #fff;
	background: #0969da;
}

@media (max-width: 600px) {
	#page button {
		font-size: 14px;
		height: 28px;
		min-width: 28px;
	}

	#page span {
		font-size: 12px;
	}
}

@media (max-width: 400px) {
	#page span {
		display: none;
	}
}
