.novex-notification-bell { position: relative; }
.novex-notification-bell--floating {
  position: fixed;
  top: 14px;
  inset-inline-end: 18px;
  z-index: 1200;
}
.novex-notification-bell__button {
  position: relative;
  min-width: 36px;
  min-height: 36px;
  border: 1px solid #d4a947;
  border-radius: 8px;
  background: #fff8e1;
  color: #12233d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.novex-notification-bell__button em {
  position: absolute;
  top: -6px;
  inset-inline-end: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #b42318;
  color: #fff;
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.novex-notification-bell__panel {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;
  width: min(360px, 84vw);
  max-height: 70vh;
  overflow: auto;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.16);
  z-index: 80;
}
.novex-notification-bell__panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid #eef2f7;
}
.novex-notification-bell__panel header button {
  border: 0;
  background: transparent;
  color: #0f766e;
  font-weight: 700;
  cursor: pointer;
}
.novex-notification-bell__list { padding: 8px; }
.novex-notification-bell__list button {
  display: block;
  width: 100%;
  text-align: inherit;
  border: 0;
  border-radius: 10px;
  background: #f8fafc;
  padding: 10px 12px;
  margin-bottom: 8px;
  cursor: pointer;
}
.novex-notification-bell__list button.is-unread { background: #fff7ed; }
.novex-notification-bell__list button span,
.novex-notification-bell__list button b,
.novex-notification-bell__list button small { display: block; }
.novex-notification-bell__list p { margin: 16px 8px; color: #64748b; }
