  /* Full "View all" page, reached from the panel footer — see sidebar.css for
     the dropdown panel's own chrome, and frontend/js/notifications.js. */
  #notifications-view { flex: 1; overflow-y: auto; padding: 20px 28px; }
  .notifications-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .notifications-header h2 { font-size: 15px; margin: 0 0 4px; }
  .notifications-header .sub { font-size: 12.5px; color: var(--text-dim); max-width: 520px; }
  .notifications-actions { display: flex; gap: 8px; flex-shrink: 0; }
  .notifications-actions button {
    background: var(--panel-2);
    border: 1px solid var(--border);
    color: var(--text);
    border-radius: 7px;
    padding: 7px 11px;
    font-size: 12px;
    cursor: pointer;
    white-space: nowrap;
  }
  .notifications-actions button:hover { border-color: var(--accent); }
  #notifications-page-list { display: flex; flex-direction: column; gap: 5px; max-width: 640px; }
  #notifications-page-list .notification-row { padding: 11px 12px; background: var(--panel-2); border: 1px solid var(--border); }
  #notifications-page-list .notification-row:hover { border-color: var(--text-dim); }

  /* Notification rows, shared by the dropdown panel (#notifications-panel-list,
     see sidebar.css for the panel chrome itself) — see frontend/js/notifications.js */
  .notifications-empty {
    padding: 20px 10px;
    font-size: 12px;
    color: var(--text-dim);
    text-align: center;
  }

  .notification-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.12s ease;
  }
  .notification-row:hover { background: var(--panel); }
  .notification-row.unread::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    margin-top: 6px;
    flex-shrink: 0;
  }
  .notification-row .notification-icon { flex-shrink: 0; margin-top: 1px; }
  .notification-row .notification-icon .icon-svg { width: 15px; height: 15px; }
  .notification-row.level-success .notification-icon .icon-svg { color: var(--green); filter: none; }
  .notification-row.level-error .notification-icon .icon-svg { color: var(--red); filter: none; }
  .notification-row.level-info .notification-icon .icon-svg { color: var(--text-dim); filter: none; }
  .notification-body { flex: 1; min-width: 0; }
  .notification-body .title { font-size: 12.5px; font-weight: 600; }
  .notification-body .text {
    font-size: 11.5px;
    color: var(--text-dim);
    margin-top: 2px;
    white-space: pre-wrap;
    overflow-wrap: anywhere;
    max-height: 2.8em;
    overflow: hidden;
  }
  .notification-body .ts { font-size: 10px; color: var(--text-dim); margin-top: 4px; }
