.mb-notif-bell { position: relative; }
.mb-notif-bell__trigger {
  position: relative;
  background: none;
  border: none;
  color: inherit; /* hérite la couleur du header (crème sur fond doré-rosé) */
  cursor: pointer;
  display: flex;
  padding: 0;
}
.mb-notif-bell__badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  border-radius: 999px;
  background: var(--mb-error);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mb-notif-bell__panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  width: 320px;
  max-width: 85vw;
  max-height: 420px;
  overflow-y: auto;
  background: var(--mb-surface);
  border: 1px solid var(--mb-border);
  border-radius: var(--mb-radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  z-index: 30;
}

.mb-notif-bell__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  width: 100%;
  text-align: left;
  padding: 12px 14px;
  border: none;
  border-bottom: 1px solid var(--mb-border);
  background: var(--mb-surface);
  color: var(--mb-text);
  cursor: pointer;
}
.mb-notif-bell__item:last-child { border-bottom: none; }
.mb-notif-bell__item:hover { background: var(--mb-surface-alt); }
.mb-notif-bell__item strong { font-size: 0.9rem; }
.mb-notif-bell__item span { font-size: 0.85rem; color: var(--mb-text-muted); }
.mb-notif-bell__item small { font-size: 0.75rem; color: var(--mb-text-muted); }
.mb-notif-bell__item--unread { background: var(--mb-surface-alt); }
.mb-notif-bell__item--unread strong::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mb-accent);
  margin-right: 6px;
}

.mb-notif-bell__empty {
  padding: 20px;
  text-align: center;
  color: var(--mb-text-muted);
  font-size: 0.9rem;
  margin: 0;
}
