/* Notification styles */
.notification-item.unread {
  position: relative;
}

.notification-item.unread::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background-color: #3B82F6; /* Blue color for unread indicator */
}

.notification-item a {
  text-decoration: none;
  color: inherit;
  display: block;
}