.etp-admin-wrap {
	max-width: 1200px;
}

.etp-container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 20px;
	margin-top: 20px;
}

.etp-box {
	background: #fff;
	border: 1px solid #ccd0d4;
	padding: 20px;
	box-shadow: 0 1px 1px rgba(0,0,0,.04);
}

.etp-box h2 {
	margin-top: 0;
	font-size: 18px;
}

.etp-box select,
.etp-box input[type="file"] {
	width: 100%;
	max-width: 400px;
}

#etp-export-result,
#etp-import-result {
	margin-top: 15px;
}

.etp-success {
	padding: 10px;
	background: #d4edda;
	border: 1px solid #c3e6cb;
	color: #155724;
	border-radius: 3px;
}

.etp-error {
	padding: 10px;
	background: #f8d7da;
	border: 1px solid #f5c6cb;
	color: #721c24;
	border-radius: 3px;
}

.etp-success a,
.etp-error a {
	color: inherit;
	text-decoration: underline;
}

@media (max-width: 782px) {
	.etp-container {
		grid-template-columns: 1fr;
	}
}