.notif-screen .header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.notif-screen .header-row .title { font-size: 18px; font-weight: 700; }
.notif-screen .back-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
}
.notif-screen .back-btn svg { width: 18px; height: 18px; }

.notif-list { display: flex; flex-direction: column; gap: 10px; }
.notif-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 14px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
}
.notif-card.unread { border-color: var(--accent); }
.notif-card .icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--surface-2);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.notif-card .icon svg { width: 18px; height: 18px; }
.notif-card.unread .icon { background: var(--accent-soft); }
.notif-card .meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.notif-card .meta .title-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.notif-card .meta .title {
  font-weight: 600;
  font-size: 14px;
}
.notif-card .meta .when {
  font-size: 11px;
  color: var(--text-muted);
}
.notif-card .meta .body {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
  text-align: start;
}
.notif-card .meta .tags {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}
.notif-card .meta .tags .tag {
  font-size: 10px;
  color: var(--text-muted);
  background: var(--surface-2);
  border-radius: var(--radius-full);
  padding: 2px 8px;
}
.notif-card .meta .tags .tag.broadcast { color: var(--accent); }

.tab-badge {
  position: absolute;
  top: -4px;
  inset-inline-start: -4px;
  min-width: 16px;
  height: 16px;
  border-radius: var(--radius-full);
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  pointer-events: none;
}
.tabbar .tab { position: relative; }
