/* Page Notifications */

.notif-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.tabs .tab {
  padding: 8px 14px;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.tabs .tab.active {
  color: var(--text-strong);
  border-bottom-color: var(--accent);
}

.notif-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.notif-item {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: border-color 150ms;
}
.notif-item:hover { border-color: var(--border-strong); }
.notif-item.unread {
  border-left: 3px solid var(--accent);
  background: var(--bg-3);
}
.notif-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.notif-item.unread .notif-icon { color: var(--text-strong); }
.notif-body { flex: 1; min-width: 0; }
.notif-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--text-strong);
  margin-bottom: 2px;
}
.notif-text {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.notif-time { font-size: 11px; color: var(--text-muted); }
