/* Minimal, portal-safe UI primitives */
.ea-alert {
	border-radius: 10px;
	padding: 14px 16px;
	margin: 0 0 16px 0;
	border: 1px solid rgba(0,0,0,.08);
	background: #f7f7f7;
}

.ea-alert__title {
	font-weight: 700;
	margin-bottom: 6px;
}

.ea-alert__text {
	line-height: 1.6;
}

.ea-alert--success {
	background: #eef9f1;
	border-color: #bfe8c9;
	color: #0f5132;
}

.ea-alert--error {
	background: #fff1f1;
	border-color: #f2b8b8;
	color: #842029;
}

.ea-alert--warning {
	background: #fff7e6;
	border-color: #ffd59a;
	color: #7a4b00;
}

.ea-alert--info {
	background: #eef7ff;
	border-color: #bcdcff;
	color: #0b3b66;
}

.ea-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 10px 14px;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 700;
	border: 1px solid rgba(0,0,0,.12);
	background: #111;
	color: #fff;
}

.ea-btn:hover {
	filter: brightness(1.05);
}

.ea-btn--disabled,
.ea-btn[aria-disabled="true"] {
	background: #bdbdbd;
	border-color: #bdbdbd;
	color: #fff;
	cursor: not-allowed;
	pointer-events: none;
}

.ea-table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid rgba(0,0,0,.08);
	border-radius: 12px;
	overflow: hidden;
}

.ea-table thead th {
	text-align: start;
	background: rgba(0,0,0,.04);
	padding: 10px 12px;
	border-bottom: 1px solid rgba(0,0,0,.08);
}

.ea-table tbody td {
	padding: 10px 12px;
	border-bottom: 1px solid rgba(0,0,0,.06);
	vertical-align: top;
}

.ea-table tbody tr:last-child td {
	border-bottom: 0;
}

.eceid-guard-actions {
	margin: 0 0 12px 0;
}
