/* ── Notifications CSS ─────────────────────────────── */

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.notif-item:last-child { border-bottom: none; }

.notif-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}

.notif-body { flex: 1; min-width: 0; }

.notif-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.notif-text {
  font-size: 13px;
  color: var(--text2);
  line-height: 1.5;
  margin-bottom: 6px;
}

.notif-time {
  font-size: 11px;
  color: var(--text3);
}

.notif-del {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg);
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: var(--text3);
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.notif-del:active { background: #FFEBEE; color: var(--danger); }
