.tcdb-table-export-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	justify-content: flex-end;
	margin: 12px 0 20px;
}

.tcdb-table-export-button {
	align-items: center;
	background: #007cba;
	border: 0;
	border-radius: 4px;
	color: #fff;
	cursor: pointer;
	display: inline-flex;
	font: inherit;
	font-size: 13px;
	font-weight: 700;
	gap: 6px;
	line-height: 1.2;
	padding: 9px 13px;
	text-decoration: none;
}

.tcdb-table-export-button:hover,
.tcdb-table-export-button:focus {
	background: #005f8f;
	color: #fff;
}

.tcdb-table-export-button:disabled {
	cursor: wait;
	opacity: 0.65;
}

@media screen and (max-width: 600px) {
	.tcdb-table-export-actions {
		justify-content: stretch;
	}

	.tcdb-table-export-button {
		flex: 1 1 auto;
		justify-content: center;
	}
}

