/* BP User Menu Lite */
.bpum-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

.bpum-icon, .bpum-avatar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: #8892a0; /* neutral grey like in screenshot */
  text-decoration: none;
  transition: color .2s ease, transform .1s ease;
}

.bpum-icon:hover, .bpum-avatar-link:hover { color: #111; transform: translateY(-1px); }

.bpum-svg { display: block; width: 20px; height: 20px; }

.bpum-name {
  color: #777;
  font-size: 14px;
  line-height: 1;
  margin: 0 2px 0 2px;
}

.bpum-avatar-link .bpum-avatar {
  width: 28px; height: 28px; border-radius: 50%;
  display: inline-block; object-fit: cover;
  border: 1px solid #d9dfe7; background: #f1f3f7;
}

.bpum-avatar--placeholder { border: 1px dashed #c7cdd6; background: #eef1f5; }

.bpum-badge {
  position: absolute;
  top: -3px; right: -3px;
  min-width: 16px; height: 16px;
  padding: 0 4px;
  border-radius: 16px;
  background: #e11d48; /* pink-red */
  color: white;
  font-size: 11px; line-height: 16px; text-align: center;
  font-weight: 700;
  box-shadow: 0 0 0 2px #fff;
}

.bpum-badge--static {
  background: #3b82f6; /* blue */
  width: 16px; min-width: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  top: -4px; right: -4px;
}

.bpum-has-badge .bpum-badge[aria-hidden="true"] { display: none; }

/* Optional: reduce gap on narrow screens */
@media (max-width: 480px) {
  .bpum-wrap { gap: 10px; }
  .bpum-name { display: none; }
}
