/* VOXFSELI Notifications CSS */
.voxfseli-notification-center {
	position: fixed;
	top: 32px;
	right: 20px;
	z-index: 999999;
}

.voxfseli-notification-toggle {
	background: #0073aa;
	color: white;
	padding: 10px;
	border-radius: 50%;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.voxfseli-notification-toggle:hover {
	background: #005a87;
}

.voxfseli-notification-count {
	position: absolute;
	top: -5px;
	right: -5px;
	background: #ff4444;
	color: white;
	border-radius: 50%;
	min-width: 18px;
	height: 18px;
	font-size: 10px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.voxfseli-notification-dropdown {
	position: absolute;
	top: 50px;
	right: 0;
	width: 350px;
	max-height: 400px;
	background: white;
	border: 1px solid #ddd;
	border-radius: 4px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
	display: none;
	z-index: 999999;
}

.voxfseli-notification-header {
	padding: 15px;
	border-bottom: 1px solid #eee;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.voxfseli-notification-header h3 {
	margin: 0;
	font-size: 16px;
	color: #333;
}

.voxfseli-mark-all-read {
	background: none;
	border: none;
	color: #0073aa;
	text-decoration: underline;
	cursor: pointer;
	font-size: 12px;
}

.voxfseli-notification-list {
	max-height: 300px;
	overflow-y: auto;
}

.voxfseli-notification-item {
	padding: 12px 15px;
	border-bottom: 1px solid #f5f5f5;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: flex-start;
}

.voxfseli-notification-item:hover {
	background: #f9f9f9;
}

.voxfseli-notification-item.voxfseli-unread {
	background: #f0f8ff;
	border-left: 3px solid #0073aa;
}

.voxfseli-notification-content {
	flex: 1;
}

.voxfseli-notification-content h4 {
	margin: 0 0 5px 0;
	font-size: 14px;
	color: #333;
}

.voxfseli-notification-content p {
	margin: 0 0 5px 0;
	font-size: 13px;
	color: #666;
	line-height: 1.4;
}

.voxfseli-notification-time {
	font-size: 11px;
	color: #999;
}

.voxfseli-notification-priority {
	width: 4px;
	height: 100%;
	margin-left: 10px;
	border-radius: 2px;
}

.voxfseli-priority-high {
	background: #ff4444;
}

.voxfseli-priority-medium {
	background: #ff8800;
}

.voxfseli-priority-low {
	background: #44aa44;
}

.voxfseli-notification-footer {
	padding: 10px 15px;
	border-top: 1px solid #eee;
	text-align: center;
}

.voxfseli-notification-footer a {
	color: #0073aa;
	text-decoration: none;
	font-size: 12px;
}

.voxfseli-no-notifications {
	padding: 20px;
	text-align: center;
	color: #999;
	font-style: italic;
}
