/* Notifications page */

.notif-wrap {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

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

.notif-header h1 { margin-bottom: 4px; }

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--r);
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
}

.notif-item:hover { background: var(--bg-hover); border-color: var(--border-2); }
.notif-item.unread { border-left: 3px solid var(--accent); }

.notif-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  background: var(--bg-card);
}

.notif-icon-pm { background: rgba(139,92,246,0.15); }
.notif-icon-mention { background: rgba(245,166,35,0.15); }
.notif-icon-suggestion_approved { background: rgba(63,185,80,0.15); }
.notif-icon-suggestion_rejected { background: rgba(248,81,73,0.15); }
.notif-icon-guild_application { background: rgba(91,141,238,0.15); }

.notif-content { flex: 1; min-width: 0; }
.notif-title { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.notif-body { font-size: 13px; margin-bottom: 4px; }
.notif-time { font-size: 11px; }

.notif-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.notif-unread-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.notif-delete-btn {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  font-size: 12px;
  padding: 2px 4px;
  border-radius: 3px;
  opacity: 0;
  transition: all var(--transition);
}

.notif-item:hover .notif-delete-btn { opacity: 1; }
.notif-delete-btn:hover { color: var(--danger); background: var(--bg-hover); }
