.notification-dropdown-wrap {
	position: relative;
	display: inline-flex;
	align-items: center;
}

.notification-bell-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	padding: 0;
	border: none;
	border-radius: 50%;
	background: transparent;
	color: var(--color-primary, #17345f);
	cursor: pointer;
	transition: all 0.2s ease;
}

.notification-bell-btn:hover,
.notification-bell-btn[aria-expanded="true"] {
	color: var(--color-accent, #f58220);
	background: rgba(245, 130, 32, 0.06);
}

.notification-bell-badge {
	position: absolute;
	top: 2px;
	right: 2px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 999px;
	background: var(--color-accent, #f58220);
	color: #fff;
	font-size: 9px;
	font-weight: 700;
	line-height: 17px;
	text-align: center;
	border: 1.5px solid #fff;
}

.notification-dropdown {
	position: absolute;
	top: calc(100% + 10px);
	right: 0;
	width: min(360px, calc(100vw - 24px));
	background: #fff;
	border: 1px solid #e8edf2;
	border-radius: 12px;
	box-shadow: 0 16px 40px rgba(23, 52, 95, 0.12);
	z-index: 1100;
	overflow: hidden;
}

.notification-dropdown__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 16px 10px;
	border-bottom: 1px solid #eef2f6;
}

.notification-dropdown__list {
	max-height: 360px;
	overflow-y: auto;
}

.notification-dropdown__item {
	display: block;
	padding: 12px 16px;
	text-decoration: none;
	color: inherit;
	border-bottom: 1px solid #f3f6f9;
	transition: background 0.15s ease;
}

.notification-dropdown__item:hover {
	background: #fafbfc;
}

.notification-dropdown__item.is-unread {
	background: #fff8f2;
	border-left: 3px solid var(--color-accent, #f58220);
}

.notification-dropdown__title {
	display: block;
	font-size: 14px;
	margin-bottom: 4px;
}

.notification-dropdown__message {
	display: block;
	font-size: 12px;
	color: #6b7c8f;
	line-height: 1.45;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.notification-dropdown__time {
	display: block;
	font-size: 11px;
	color: #9aa8b5;
	margin-top: 6px;
}

.notification-dropdown__empty {
	padding: 28px 16px;
	text-align: center;
	color: #7a8a95;
	font-size: 14px;
}

.notification-dropdown__foot {
	padding: 10px 16px 12px;
	border-top: 1px solid #eef2f6;
	text-align: center;
}

.notification-dropdown__foot a {
	font-size: 13px;
	font-weight: 600;
	color: var(--color-primary, #17345f);
	text-decoration: none;
}

.notification-dropdown__foot a:hover {
	color: var(--color-accent, #f58220);
}

#header .notification-bell-btn,
.header-actions .notification-bell-btn {
	color: inherit;
}

@media (max-width: 991.98px) {
	.notification-dropdown {
		right: -58px;
	}
}
