.notification-bell-dot {
	width: 10px;
	height: 10px;
	margin-top: -4px;
	margin-right: -4px;
	background: #ff6b6b;
	box-shadow: 0 0 0 2px var(--bs-body-bg, #fff);
	border-radius: 50%;
	animation: notification-bell-pulse 1.5s ease-out infinite;
}

.app-header .menu #notificationsDropdown,
.menu-profile .menu #notificationsDropdown {
	display: flex;
	align-items: center;
}

@keyframes notification-bell-pulse {
	0% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
	}
	70% {
		transform: scale(1.6);
		box-shadow: 0 0 0 8px rgba(255, 107, 107, 0);
	}
	100% {
		transform: scale(1);
		box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.notification-bell-dot {
		animation: none;
	}
}

.notification-dropdown-panel {
	border-radius: 12px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.12);
	border: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.08));
	overflow: hidden;
	min-width: min(400px, calc(100vw - 2rem));
	max-width: min(400px, calc(100vw - 2rem));
}

.notification-dropdown-header {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.08));
	background: var(--bs-body-bg);
}

.notification-dropdown-header-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 0.75rem;
}

.notification-dropdown-title {
	font-size: 1rem;
	font-weight: 600;
	color: var(--bs-body-color);
	letter-spacing: -0.01em;
}

.notification-mark-all-btn {
	white-space: nowrap;
}

.notification-dropdown-filter {
	padding: 0.75rem 1.25rem;
	background: var(--bs-tertiary-bg, #f8f9fa);
	border-bottom: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.06));
}

.notification-filter-tabs {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
	border: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.08));
	background: var(--bs-body-bg);
}

.notification-filter-tab {
	flex: 1;
	padding: 0.5rem 1rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--bs-secondary-color);
	border: none;
	background: transparent;
	cursor: pointer;
	transition: background 0.15s, color 0.15s;
}

.notification-filter-tab:hover {
	background: rgba(0, 0, 0, 0.04);
	color: var(--bs-body-color);
}

.notification-filter-tab.active {
	background: var(--bs-primary);
	color: #fff;
	font-weight: 600;
}

.notification-dropdown-list {
	overflow-y: auto;
	background: var(--bs-body-bg);
}

.notification-dropdown-empty {
	text-align: center;
	padding: 2.5rem 1.25rem;
	font-size: 0.875rem;
	color: var(--bs-secondary-color);
}

.notification-dropdown-list .notification-item {
	padding: 1rem 1.25rem;
	border-bottom: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.06));
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	cursor: pointer;
	transition: background 0.12s;
}

.notification-dropdown-list .notification-item:last-child {
	border-bottom: none;
}

.notification-dropdown-list .notification-item:hover {
	background: var(--bs-tertiary-bg, rgba(0, 0, 0, 0.03));
}

.notification-item-icon {
	width: 1.25rem;
	flex-shrink: 0;
	text-align: center;
	color: var(--bs-primary);
	margin-top: 0.15rem;
}

.notification-dropdown-list .notification-item-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bs-primary);
	flex-shrink: 0;
	margin-top: 0.4rem;
}

.notification-dropdown-list .notification-item-body {
	flex: 1;
	min-width: 0;
}

.notification-dropdown-list .notification-item-text {
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--bs-body-color);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.notification-dropdown-list .notification-item-date {
	font-size: 0.75rem;
	color: var(--bs-secondary-color);
	margin-top: 0.35rem;
}

.notification-dropdown-footer {
	padding: 1rem 1.25rem;
	border-top: 1px solid var(--bs-border-color-translucent, rgba(0, 0, 0, 0.08));
	background: var(--bs-tertiary-bg, #f8f9fa);
	border-radius: 0 0 12px 12px;
}

.notification-dropdown-footer-count {
	font-size: 0.75rem;
	margin-bottom: 0.5rem;
	text-align: center;
}

.notification-dropdown-view-all {
	text-align: center;
	font-weight: 500;
}

.notifications-page {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.notifications-page .notifications-page-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-bottom: 1.25rem;
}

.notifications-page .notifications-page-title {
	font-size: 1.5rem;
	font-weight: 600;
	margin: 0;
	color: var(--bs-body-color);
}

.notifications-page .card {
	width: 100%;
}

.notifications-page .notifications-filter-bar {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
	margin-bottom: 1.25rem;
	padding: 0.75rem 0.9rem;
	border-radius: 10px;
	background: var(--bs-tertiary-bg, #f8f9fa);
	width: 100%;
}

.notifications-page .notifications-filter-tabs {
	display: inline-flex;
	border-radius: 999px;
	overflow: hidden;
	border: 1px solid var(--bs-border-color);
	background: var(--bs-body-bg);
	flex-shrink: 0;
}

.notifications-page .notifications-filter-tab {
	padding: 0.4rem 1rem;
	font-size: 0.875rem;
	font-weight: 500;
	border: none;
	background: transparent;
	color: var(--bs-secondary-color);
	text-decoration: none;
	transition: background 0.15s, color 0.15s;
}

.notifications-page .notifications-filter-tab:hover {
	background: rgba(0, 0, 0, 0.04);
	color: var(--bs-body-color);
}

.notifications-page .notifications-filter-tab.active {
	background: var(--bs-primary);
	color: #fff;
	font-weight: 600;
}

.notifications-page .notifications-search-wrap {
	flex: 1 1 200px;
	max-width: 320px;
	min-width: 0;
}

.notifications-page .notifications-search-wrap .form-control {
	border-radius: 8px;
	font-size: 0.875rem;
}

.notifications-page .notifications-sort-btns .btn {
	font-size: 0.8125rem;
	border-radius: 999px;
}

.notifications-page .notifications-sort-btns .btn i {
	font-size: 0.75rem;
}

.notifications-page .notifications-table-wrap {
	border-radius: 12px;
	border: 1px solid rgba(0, 0, 0, 0.06);
	overflow: hidden;
	width: 100%;
}

.notifications-page .notifications-table {
	margin: 0;
	width: 100%;
	table-layout: fixed;
}

.notifications-page .notifications-table thead th {
	font-size: 0.75rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.02em;
	color: var(--bs-secondary-color);
	background: var(--bs-tertiary-bg);
	border-bottom: 1px solid rgba(0, 0, 0, 0.06);
	padding: 0.75rem 1rem;
}

.notifications-page .notifications-table tbody td {
	padding: 0.875rem 1rem;
	vertical-align: middle;
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	transition: background 0.12s;
	font-weight: 400;
}

.notifications-page .notifications-table tbody tr:last-child td {
	border-bottom: none;
}

.notifications-page .notifications-table tbody tr:hover td {
	background: rgba(0, 0, 0, 0.02);
}

.notifications-page .notification-cell {
	display: flex;
	align-items: flex-start;
	gap: 0.75rem;
	min-width: 0;
}

.notifications-page .notification-cell-body {
	flex: 1;
	min-width: 0;
}

.notifications-page .notification-unread-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--bs-primary);
	flex-shrink: 0;
	margin-top: 0.4rem;
}

.notifications-page .notification-status-indicator.read {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	border: 1.5px solid var(--bs-secondary-color);
	opacity: 0.35;
	flex-shrink: 0;
	margin-top: 0.4rem;
	box-sizing: border-box;
	background: transparent;
	display: block;
}

.notifications-page .notification-slot-placeholder {
	display: inline-block;
	flex-shrink: 0;
	vertical-align: middle;
}

.notifications-page .notification-slot-checkbox {
	width: 1rem;
	height: 1rem;
}

.notifications-page .notification-slot-actions {
	width: 1.25rem;
	height: 1.25rem;
}

.notifications-page .notification-col-select,
.notifications-page .notification-col-actions {
	width: 48px;
}

.notifications-page .notification-list-row.is-read:not(.selected) .notification-text,
.notifications-page .notification-list-row.is-read:not(.selected) .notification-meta {
	color: var(--bs-secondary-color);
}

.notifications-page .notification-list-row.is-read:not(.selected) .notification-date-cell {
	opacity: 0.75;
}

.notifications-page .notification-list-row.is-read:hover td {
	background: rgba(0, 0, 0, 0.01);
}

.notifications-page .notification-cell-body .notification-text {
	font-size: 0.875rem;
	line-height: 1.45;
	color: var(--bs-body-color);
	white-space: pre-line;
	font-weight: 400;
}

.notifications-page .notification-cell-body .notification-meta {
	font-size: 0.8125rem;
	color: var(--bs-secondary-color);
	margin-top: 0.25rem;
	font-weight: 400;
}

.notifications-page .notification-date-cell {
	font-size: 0.8125rem;
	color: var(--bs-secondary-color);
	white-space: nowrap;
}

.notifications-page .notification-row-actions .btn-link {
	padding: 0.25rem 0.5rem;
	color: var(--bs-secondary-color);
	border-radius: 6px;
}

.notifications-page .notification-row-actions .btn-link:hover {
	color: var(--bs-body-color);
	background: rgba(0, 0, 0, 0.06);
}

.notifications-page .notification-list-row.selected td {
	background: rgba(13, 110, 253, 0.08);
}

.notifications-page .notification-list-row.selected .notification-text {
	font-weight: 600;
}

.notifications-page .notifications-empty {
	text-align: center;
	padding: 3rem 2rem;
	color: var(--bs-secondary-color);
	width: 100%;
}

.notifications-page .notifications-empty-icon {
	font-size: 2.5rem;
	opacity: 0.5;
	margin-bottom: 0.75rem;
}

.notifications-page .notifications-pagination {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.75rem;
	padding: 1rem 1rem 0;
	margin-top: 0.5rem;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
	width: 100%;
}

.notifications-page .notifications-pagination-info {
	font-size: 0.8125rem;
	color: var(--bs-secondary-color);
}

.notifications-page .notifications-pagination-btns .btn {
	font-size: 0.8125rem;
}
