.fcom-notifications-plus {
	max-width: 720px;
	margin: 0 auto;
	padding: 16px;
	border: 1px solid #e3e8ee;
	border-radius: 10px;
	background: #fff;
	box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}
.fcom-notifications-plus .fcomnp-tabs {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 12px;
}
.fcom-notifications-plus .fcomnp-tabs button {
	border: 1px solid #e3e8ee;
	background: #f7f9fb;
	border-radius: 8px;
	padding: 8px 12px;
	cursor: pointer;
	transition: all 0.15s ease;
}
.fcom-notifications-plus .fcomnp-tabs button.active {
	background: #2B2E33;
	color: #fff;
	border-color: #2B2E33;
}
.fcomnp-list {
	min-height: 80px;
}
.fcomnp-loading {
	padding: 12px 0;
	color: #555;
}
.fcomnp-items {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fcomnp-item {
	display: flex;
	gap: 12px;
	border: 1px solid #e3e8ee;
	border-radius: 10px;
	padding: 10px;
	cursor: pointer;
	transition: all 0.15s ease;
}
.fcomnp-item:hover {
	background: #f7f9fb;
}
.fcomnp-item-avatar img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}
.fcomnp-item-content {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}
.fcomnp-item-text {
	font-size: 14px;
	line-height: 1.4;
}
.fcomnp-item-meta {
	font-size: 12px;
	color: #777;
}
.fcomnp-footer {
	margin-top: 12px;
	text-align: right;
}
.fcomnp-footer a {
	text-decoration: none;
	color: #2B2E33;
	font-weight: 600;
}
.fcomnp-empty {
	padding: 12px 0;
	color: #555;
}
