.epoo-panel {
	max-width: 1100px;
	margin: 0 auto;
	color: #14171f;
}

.epoo-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	gap: 16px;
	margin-bottom: 18px;
}

.epoo-header h2,
.epoo-form h3,
.epoo-list h3 {
	margin: 0 0 6px;
}

.epoo-header p {
	margin: 0;
	color: #5f6673;
}

.epoo-form,
.epoo-list {
	padding: 18px;
	margin-bottom: 20px;
	border: 1px solid #d8dde7;
	border-radius: 8px;
	background: #fff;
}

.epoo-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
}

.epoo-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-weight: 600;
}

.epoo-form input,
.epoo-form select,
.epoo-form textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #cbd2df;
	border-radius: 6px;
	padding: 10px 11px;
	font: inherit;
	background: #fff;
}

.epoo-check {
	flex-direction: row !important;
	align-items: center;
	gap: 9px !important;
	padding-top: 28px;
}

.epoo-check input {
	width: auto;
}

.epoo-wide {
	margin-top: 14px;
}

.epoo-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-top: 16px;
}

.epoo-status {
	margin-right: auto;
	color: #4f5867;
	font-weight: 700;
}

.epoo-button {
	border: 1px solid #b8c0ce;
	border-radius: 6px;
	padding: 10px 14px;
	background: #f7f9fc;
	color: #111827;
	font-weight: 700;
	cursor: pointer;
}

.epoo-button-primary {
	border-color: #0f5fb8;
	background: #0f6fd8;
	color: #fff;
}

.epoo-message {
	padding: 12px 14px;
	margin-bottom: 14px;
	border-radius: 6px;
	font-weight: 700;
}

.epoo-message-success {
	border: 1px solid #b8dcc8;
	background: #edf9f1;
	color: #176b35;
}

.epoo-message-error {
	border: 1px solid #efb8b8;
	background: #fff1f1;
	color: #a52626;
}

.epoo-list {
	overflow-x: auto;
}

.epoo-list table {
	width: 100%;
	border-collapse: collapse;
	min-width: 760px;
}

.epoo-list th,
.epoo-list td {
	padding: 10px;
	border-bottom: 1px solid #e5e8ef;
	text-align: left;
	vertical-align: top;
}

.epoo-list th {
	color: #4d5564;
	font-size: 13px;
	text-transform: uppercase;
}

@media (max-width: 760px) {
	.epoo-grid {
		grid-template-columns: 1fr;
	}

	.epoo-check {
		padding-top: 0;
	}
}
