/* Bell + badge */
#spanNotifBell {
	position: relative;
	display: inline-block;
	margin: 0 8px;
}

	#spanNotifBell a {
		display: inline-block;
		padding: 6px 8px;
		border-radius: 8px;
	}

		#spanNotifBell a:hover {
			background: rgba(255,255,255,.10);
		}

#notifBadge {
	position: absolute;
	top: -4px;
	right: -6px;
	min-width: 18px;
	height: 18px;
	line-height: 18px;
	padding: 0 4px;
	font-size: 11px;
	text-align: center;
	color: #fff;
	background: #e74c3c;
	border-radius: 10px;
	box-shadow: 0 0 0 2px rgba(0,0,0,.08);
	display: none;
}

/* Dropdown */
#divNotif {
	position: absolute;
	display: none;
	z-index: 1000;
	width: 420px;
}

@media (max-width: 640px) {
	#divNotif {
		width: 95vw;
	}
}

#divNotif .notif-header {
	font-weight: 600;
	padding: 10px 12px;
	border-bottom: 1px solid #eee;
}

#divNotif ul {
	list-style: none;
	margin: 0;
	padding: 0;
	max-height: 360px;
	overflow-y: auto;
}

#divNotif li {
	display: flex;
	gap: 10px;
	padding: 10px 12px;
	border-bottom: 1px solid #f2f2f2;
	align-items: flex-start;
}

	#divNotif li:last-child {
		border-bottom: none;
	}

#divNotif .n-icon {
	flex: 0 0 28px;
	margin-top: 2px;
	opacity: .85;
}

#divNotif .n-body {
	flex: 1 1 auto;
}

#divNotif .n-title {
	font-weight: 600;
}

	#divNotif .n-title a {
		text-decoration: none;
	}

#divNotif .n-meta {
	color: #888;
	font-size: 12px;
	margin-top: 2px;
}

#divNotif .n-actions {
	flex: 0 0 auto;
}

#divNotif .btn-ack {
	border: 0;
	background: #f5f5f5;
	border-radius: 6px;
	padding: 6px 8px;
	cursor: pointer;
}

	#divNotif .btn-ack:hover {
		background: #ececec;
	}

#divNotif .empty {
	padding: 16px;
	text-align: center;
	color: #888;
}

#divNotif .notif-footer {
	padding: 10px 12px;
	text-align: right;
	border-top: 1px solid #eee;
}

/* Optional severity accent for the icon */
#divNotif .sev-info {
	color: #3498db;
}

#divNotif .sev-warn {
	color: #f39c12;
}

#divNotif .sev-error {
	color: #e74c3c;
}

#divNotif .n-section {
	font-weight: 600;
	font-size: 13px;
	padding: 8px 12px;
	border-bottom: 1px solid rgba(0,0,0,.06);
	color: #555;
	background: #fafafa;
	letter-spacing: .2px;
}
