/* Nuredux Notifications — customer account feed */

.nuredux-notify-feed {
	list-style: none;
	margin: 0;
	padding: 0;
}

.nuredux-notify-item {
	position: relative;
	padding: 16px 18px;
	margin: 0 0 12px;
	border: 1px solid #e5e5e5;
	border-left-width: 4px;
	border-radius: 6px;
	background: #fff;
}

.nuredux-notify-item.is-unread {
	background: #f6fbff;
}

.nuredux-notify-item.severity-success { border-left-color: #00a32a; }
.nuredux-notify-item.severity-warning { border-left-color: #dba617; }
.nuredux-notify-item.severity-error   { border-left-color: #d63638; }
.nuredux-notify-item.severity-info    { border-left-color: #2271b1; }

.nuredux-notify-item__head {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	align-items: baseline;
	justify-content: space-between;
}

.nuredux-notify-item__time {
	color: #767676;
	font-size: .82em;
}

.nuredux-notify-item p {
	margin: 6px 0 0;
	color: #444;
}

.nuredux-notify-item__link {
	display: inline-block;
	margin-top: 8px;
	font-size: .9em;
}

.nuredux-account-badge {
	display: inline-block;
	min-width: 18px;
	padding: 1px 6px;
	margin-left: 6px;
	border-radius: 9px;
	background: #d63638;
	color: #fff;
	font-size: 11px;
	line-height: 16px;
	text-align: center;
}

.nuredux-notify-empty-state {
	padding: 24px;
	border: 1px dashed #ddd;
	border-radius: 6px;
	text-align: center;
	color: #666;
}
