.notif-pro-page { padding-bottom: 2rem; }
.notif-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.notif-card {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  background: var(--card, #fff);
  border: 1px solid var(--border, #eef0f5);
  border-radius: 1rem;
  padding: .95rem 1rem;
  text-decoration: none;
  color: inherit;
  margin-bottom: .65rem;
  box-shadow: 0 6px 18px rgba(15,15,40,.04);
  position: relative;
}
.notif-card.is-unread {
  border-color: rgba(var(--brand-rgb), .35);
  background: rgba(var(--brand-rgb), .04);
}
.notif-icon {
  width: 40px;
  height: 40px;
  border-radius: .8rem;
  background: var(--brand-soft, #eef0ff);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-body { flex: 1; min-width: 0; }
.notif-top {
  display: flex;
  justify-content: space-between;
  gap: .75rem;
  margin-bottom: .25rem;
}
.notif-top span { font-size: .72rem; color: var(--muted); white-space: nowrap; }
.notif-body p {
  margin: 0;
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.5;
}
.notif-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
  margin-top: .35rem;
  flex-shrink: 0;
}
.notif-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
}
.notif-empty i { font-size: 2rem; margin-bottom: .75rem; display: block; color: #c5c9d8; }
