/* BuddyPress Featured Members - pill style and inline Show more pill */
.bpfm-list { display:flex; flex-direction:column; gap:10px; }
.bpfm-item {
  position:relative; display:flex; align-items:center;
  padding:8px 12px; border-radius:999px; background:#f7f7fb;
  box-shadow:0 1px 1px rgba(0,0,0,.04);
}
.bpfm-avatar img, .bpfm-avatar .avatar { width:32px; height:32px; border-radius:999px; }
.bpfm-avatar { display:inline-flex; margin-right:10px; }
.bpfm-meta { display:flex; align-items:center; gap:8px; flex:1; }
.bpfm-name { font-weight:600; text-decoration:none; color:#222; margin-right:auto; }
.bpfm-actions .generic-button a, .bpfm-actions .button {
  padding:6px 10px; border-radius:999px; background:#6e62ff;
  color:#fff!important; text-decoration:none; font-size:12px; line-height:1;
}
.bpfm-dismiss {
  position:absolute; right:10px; top:6px; background:transparent;
  border:0; font-size:16px; cursor:pointer; color:#888;
}
.bpfm-dismiss:hover{ color:#444; }
.bpfm-hidden { display:none; }

/* Toggle pill styled like other items */
.bpfm-toggle-item { justify-content:center; }
.bpfm-toggle { padding:8px 14px; border-radius:999px; background:#6e62ff; color:#fff; border:0; cursor:pointer; font-size:13px; }
.bpfm-toggle:focus{ outline:2px solid rgba(110,98,255,.35); outline-offset:2px; }
