.release-toolbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 14px;
}
.check-column {
	width: 44px;
	text-align: center;
}
.check-column input {
	display: inline-block;
	width: auto;
	margin: 0;
}
.table-scroll {
	overflow-x: auto;
}
.pagination {
	display: flex;
	gap: 7px;
	flex-wrap: wrap;
	margin-top: 18px;
	padding: 0;
	border: 0;
}
.pagination a {
	display: grid;
	min-width: 38px;
	height: 38px;
	padding: 0 10px;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 8px;
	background: #fff;
}
.pagination a.current {
	border-color: var(--blue);
	background: var(--blue);
	color: #fff;
	font-weight: 700;
}
@media (max-width: 760px) {
	.release-toolbar {
		align-items: flex-start;
		flex-direction: column;
	}
}
