/* ========================================
   notification-bell — campanita + badge de no leídas
   Vive en el sidebar (account) y en el drawer mobile. El badge se actualiza
   en vivo vía Turbo Stream (clase .js-bell-badge, broadcast per-user).
   ======================================== */

.nav-item.-bell,
.more-drawer__item.-bell {
  position: relative;
}

.bell-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  margin-left: auto;
  border-radius: 9px;
  background: var(--roja);
  color: #fff;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
}

.bell-badge.-empty {
  display: none;
}
