/* ─── Notifications Screen ───────────────────────────────────── */

.notif-screen {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #050507;
}

.notif-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 16px 8px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.notif-title {
  font-size: 26px;
  font-weight: 900;
  color: #fff;
  margin: 0;
}

.notif-unread-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  padding: 0 8px;
  border-radius: 999px;
  background: #FF6B35;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
}

.notif-content {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  padding-bottom: 80px;
}

.notif-content::-webkit-scrollbar {
  display: none;
}

.notif-list {
  padding: 0;
}

.notif-item {
  border-bottom: 1px solid rgba(255,255,255,0.04);
  background: transparent;
  transition: background 0.15s;
}

.notif-item-unread {
  background: rgba(255,107,53,0.03);
}

.notif-item-content {
  padding: 14px 16px;
}

.notif-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.notif-item-actor {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notif-actor-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  color: #fff;
  background: #FF6B35;
  flex-shrink: 0;
}

.notif-actor-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.notif-unread-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FF6B35;
  flex-shrink: 0;
}

.notif-item-body {
  margin-bottom: 8px;
}

.notif-message {
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.4;
  margin: 0 0 6px;
}

.notif-verb {
  font-weight: 600;
  color: #fff;
}

.notif-description {
  font-size: 12px;
  color: #64748b;
  line-height: 1.4;
  margin: 0;
}

.notif-item-footer {
  display: flex;
  align-items: center;
  gap: 8px;
}

.notif-time {
  font-size: 11px;
  color: #64748b;
  font-weight: 500;
}

/* ─── Empty state (inherited from cfnetwork_theme.css) ─────── */
/* Already defined:
.empty-state {
  text-align: center;
  padding: 48px 24px;
  color: #64748b;
}
.empty-title {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.empty-description {
  font-size: 13px;
  color: #64748b;
}
*/
