/* Notifications bell — context-free trigger with unread-count badge */

.notifications-bell {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-1) var(--sp-2);
  line-height: 1;
}

.notifications-bell__icon {
  display: block;
  width: var(--fs-20);
  height: var(--fs-20);
}

.notifications-bell__count {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.1rem;
  height: 1.1rem;
  padding: 0 var(--sp-1);
  border-radius: 999px;
  background: var(--color-danger);
  color: var(--color-ink-onfill);
  font-size: var(--fs-12);
  font-weight: var(--fw-semibold);
  line-height: 1;
}
