.notifications-page { padding: 12px; }
.notifications-list { list-style: none; padding: 0; margin: 12px 0; display: grid; gap: 10px; }
.notification {
  padding: 12px;
  border-radius: 12px;
  /* Prevent layout break on long tokens (e.g. fffffffff...) */
  overflow-wrap: anywhere;
  word-break: break-word;
}
.notification.unread { outline: 1px solid rgba(255,255,255,0.25); }

/* If any notification row uses flex (now or later), allow children to shrink */
.notification > * { min-width: 0; }

/* Links and previews should wrap too */
.notification a,
.notification .muted {
  overflow-wrap: anywhere;
  word-break: break-word;
}
.mark-read-form { display: flex; gap: 10px; align-items: center; margin: 10px 0 16px; }
.unread-count { opacity: 0.85; font-size: 0.95rem; }
.muted { opacity: 0.8; }

/* === Added: notifications missing classes (page-title) === */
.page-title {
  margin: 0 0 1rem 0;
  padding: 12px 14px;
  background: var(--grad-primary);
  color: var(--title-color);
  border-radius: 14px;
  font-weight: 800;
  text-align: center;
}
