/* Extracted from recruiter-dashboard/notifications/index.html. */
.page-toolbar {
      display: flex; flex-wrap: wrap; align-items: center;
      justify-content: space-between; gap: 14px; margin-bottom: 20px;
    }
    .page-toolbar__title { margin: 0; font-size: 1.25rem; font-weight: 700; }
    .page-toolbar__right { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

    /* Filter tabs */
    .notif-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
    .notif-tab {
      display: inline-flex; align-items: center; gap: 5px;
      min-height: 34px; padding: 0 13px; border-radius: 999px;
      border: 1px solid var(--line); background: #fff;
      font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); cursor: pointer;
    }
    .notif-tab:hover { background: rgba(131,230,189,0.12); border-color: rgba(5,150,105,0.14); color: var(--ink); }
    .notif-tab.is-active { background: #f0fdf8; border-color: rgba(5,150,105,0.2); color: var(--ink); }
    .notif-tab__count {
      min-width: 18px; height: 18px; display: inline-grid; place-items: center;
      border-radius: 999px; background: rgba(1,56,44,0.06);
      font-size: 0.6875rem; font-weight: 700; line-height: 1;
    }
    .notif-tab.is-active .notif-tab__count { background: rgba(5,150,105,0.12); color: var(--accent); }

    /* Mark all read button */
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 6px;
      min-height: 34px; padding: 0 14px; border-radius: 999px;
      border: 1px solid var(--line); background: transparent;
      font-size: 0.8125rem; font-weight: 600; color: var(--ink-soft); cursor: pointer;
    }
    .btn-ghost:hover { background: rgba(131,230,189,0.10); border-color: rgba(5,150,105,0.14); color: var(--ink); }

    /* Date group header */
    .notif-date-header {
      padding: 14px 0; margin: 0;
      font-size: 0.6875rem; font-weight: 700; text-transform: uppercase;
      letter-spacing: 0.16em; color: var(--ink-faint);
    }

    /* Notification list */
    .notif-list { display: grid; gap: 0; }

    /* Notification row */
    .notif-row {
      display: flex; align-items: flex-start; gap: 14px;
      padding: 16px 18px; border-bottom: 1px solid var(--line-soft);
      position: relative; transition: background 0.15s;
    }
    .notif-row:hover { background: rgba(1,56,44,0.015); }
    .notif-row.is-unread { background: rgba(59,130,246,0.035); }
    .notif-row.is-unread:hover { background: rgba(59,130,246,0.055); }

    /* Icon circle */
    .notif-icon {
      width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
      display: grid; place-items: center; flex-shrink: 0;
    }
    .notif-icon svg { width: 20px; height: 20px; }
    .notif-icon--green { background: #ecfdf5; color: #059669; }
    .notif-icon--blue { background: #eff6ff; color: #3b82f6; }
    .notif-icon--violet { background: #f3f0ff; color: #6d59d9; }
    .notif-icon--amber { background: #fffbeb; color: #d97706; }

    /* Content */
    .notif-content { flex: 1; min-width: 0; }
    .notif-title { font-size: 0.875rem; font-weight: 400; color: var(--ink); line-height: 1.4; margin: 0; }
    .is-unread .notif-title { font-weight: 600; }
    .notif-desc { font-size: 0.8125rem; color: var(--ink-soft); line-height: 1.4; margin: 2px 0 0; }
    .notif-time { font-size: 0.75rem; color: var(--ink-faint); margin: 4px 0 0; }

    /* Right side: action + dot */
    .notif-right {
      display: flex; flex-direction: column; align-items: flex-end;
      gap: 8px; flex-shrink: 0; padding-top: 2px;
    }
    .notif-action {
      font-size: 0.8125rem; font-weight: 600; color: var(--accent);
      text-decoration: none; white-space: nowrap;
    }
    .notif-action:hover { color: var(--accent-hover); text-decoration: underline; }
    .notif-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: #3b82f6; flex-shrink: 0;
    }

    @media (max-width: 639px) {
      .page-toolbar { flex-direction: column; align-items: flex-start; }
      .page-toolbar__right { width: 100%; }
      .notif-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; }
      .notif-row { padding: 14px 12px; }
    }
