/* Notifications Page Styles */
.notifications-container {
	padding: 15px 0;
}

/* Fix the layout for the site-main d-flex */
.site-main.d-flex {
	display: flex !important;
	flex-direction: row;
	min-height: 100vh;
}

.site-main.d-flex .sidebar-wrapper {
	width: 280px;
	min-width: 280px;
	flex-shrink: 0;
	height: 100%;
}

.site-main.d-flex .main-content {
	flex: 1;
	overflow-x: hidden;
}

.notifications-header {
	margin-bottom: 30px;
	border-bottom: 1px solid #eaeaea;
	padding-bottom: 15px;
}

.notifications-header h1 {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 5px;
}

.notifications-header p {
	font-size: 16px;
	color: #666;
	margin: 0;
}

.notifications-list {
	margin-top: 20px;
}

.notification-link-card {
	text-decoration: none;
	color: inherit;
	display: block;
}

.notification-link-card:hover {
	text-decoration: none;
	color: inherit;
}

.notification-card {
	display: flex;
	align-items: flex-start;
	padding: 20px;
	transition: all 0.3s ease;
	
}

.notification-card:not(:last-child) {
	border-bottom: 1px solid rgba(0, 0, 0, 0.05);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.notification-card.new-notification {
	border-left: 4px solid #007bff;
	padding-left: 16px;
}

.notification-tag {
	margin-right: 15px;
	flex-shrink: 0;
}

.notification-tag .td-tags {
	display: inline-block;
	padding: 6px 12px;
	border-radius: 4px;
	font-size: 13px;
	font-weight: 500;
	white-space: nowrap;
}

.notification-content {
	flex: 1;
}

.notification-content h3 {
	font-size: 18px;
	margin: 0 0 8px 0;
	font-weight: 700;
}

.notification-content p {
	font-size: 14px;
	color: #666;
	margin: 0 0 10px 0;
}

.notification-date {
	font-size: 12px;
	color: #999;
	margin-bottom: 0;
}

.empty-notifications {
	text-align: center;
	padding: 50px 0;
	color: #999;
}

/* Dark mode styles for notifications */
.dark-mode .notification-card:not(:last-child) {
	border-bottom-color: rgba(255, 255, 255, 0.05);
}

.dark-mode .notification-card.new-notification {
	border-left: 4px solid #3498db;
}

.dark-mode .notification-content h3 {
	color: #fff;
}

.dark-mode .notification-content p {
	color: #bbb;
}

.dark-mode .notification-date {
	color: #888;
}

.dark-mode .empty-notifications {
	color: #888;
}

/* Header notification icon styles */
.notification-item {
	position: relative;
	cursor: pointer;
}

.notification-item span {
	position: absolute;
	top: -3px;
	right: -3px;
	width: 8px;
	height: 8px;
	background-color: #ff4757;
	border-radius: 50%;
}

/* Responsive styles for notifications */
@media (max-width: 767px) {
	.site-main.d-flex {
		flex-direction: column;
	}
	
	.site-main.d-flex .sidebar-wrapper {
		width: 100%;
		min-width: 100%;
	}
	
	.notification-card {
		flex-direction: column;
	}
	
	.notification-tag {
		margin-right: 0;
		margin-bottom: 10px;
	}
	
	.notification-content h3 {
		font-size: 16px;
	}
} 