.pageTitle, #page > hr {display:none}
/* Bildirim Sayfası Özel Stilleri */
.notif-card {
	background: #ffffff;
	border-radius: var(--card-radius);
	border: 1px solid var(--border-color);
	box-shadow: 0 10px 25px -5px rgba(0,0,0,0.02);
	overflow: hidden;
}

.notif-header {
	padding: 20px 25px;
	border-bottom: 1px solid #f1f5f9;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.notif-item {
	display: flex;
	gap: 16px;
	padding: 20px 25px;
	border-bottom: 1px solid #f8fafc;
	text-decoration: none !important;
	transition: all 0.2s ease;
	position: relative;
}

.notif-item:last-child {
	border-bottom: none;
}

.notif-item:hover {
	background-color: #fcfdfe;
}

/* Okunmamış Bildirim Stili */
.notif-unread {
	background-color: #fff1f2 !important; /* Çok hafif kırmızımsı arka plan */
}

.unread-dot {
	width: 8px;
	height: 8px;
	background-color: var(--primary-red);
	border-radius: 50%;
	position: absolute;
	right: 25px;
	top: 50%;
	transform: translateY(-50%);
}

/* İkon Kutuları */
.notif-icon-box {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	font-size: 1.25rem;
	transition: transform 0.2s;
}

.notif-item:hover .notif-icon-box {
	transform: scale(1.05);
}

/* Tip Bazlı İkon Renkleri */
.bg-announce { background-color: #fff1f2; color: var(--primary-red); }
.bg-comment { background-color: #eff6ff; color: #3b82f6; }
.bg-like { background-color: #fdf2f8; color: #db2777; }
.bg-default { background-color: #f1f5f9; color: #64748b; }

.notif-content {
	flex: 1;
	padding-right: 20px;
}

.notif-text {
	font-size: 0.95rem;
	color: var(--dark-text);
	line-height: 1.4;
	font-weight: 500;
	margin-bottom: 4px;
}

.notif-time {
	font-size: 0.8rem;
	color: var(--text-gray);
	font-weight: 600;
	display: flex;
	align-items: center;
	gap: 5px;
}

/* Boş Durum */
.empty-notif {
	padding: 60px 20px;
	text-align: center;
}

.empty-notif-icon {
	font-size: 4rem;
	color: #e2e8f0;
	margin-bottom: 20px;
	display: block;
}