/* In-app notification bell */
.beast-notif-bell {
  position: relative;
}
.beast-notif-bell .navbar-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: inherit;
  text-decoration: none;
}
.beast-notif-bell .navbar-link:hover,
.beast-notif-bell .navbar-link:focus {
  color: #00acac;
}
.beast-notif-badge {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.25rem;
  border-radius: 999px;
  background: #00acac;
  color: #fff;
  font-size: 0.65rem;
  line-height: 1rem;
  text-align: center;
  font-weight: 600;
}
.beast-notif-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.35rem);
  width: min(22rem, calc(100vw - 1.5rem));
  max-height: min(24rem, 70vh);
  overflow: hidden;
  display: none;
  flex-direction: column;
  background: var(--bs-body-bg, #fff);
  color: var(--bs-body-color, #222);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  z-index: 1050;
}
.beast-notif-menu.show {
  display: flex;
}
.app.dark-mode .beast-notif-menu,
[data-bs-theme="dark"] .beast-notif-menu {
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}
.beast-notif-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid rgba(127, 127, 127, 0.2);
  font-weight: 600;
}
.beast-notif-menu__head button {
  border: 0;
  background: transparent;
  color: #00acac;
  font-size: 0.8rem;
  padding: 0;
  cursor: pointer;
}
.beast-notif-list {
  overflow: auto;
  max-height: 18rem;
}
.beast-notif-item {
  display: block;
  padding: 0.75rem 0.9rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(127, 127, 127, 0.12);
}
.beast-notif-item:hover {
  background: rgba(0, 172, 172, 0.08);
  color: inherit;
}
.beast-notif-item.is-unread {
  background: rgba(0, 172, 172, 0.06);
}
.beast-notif-item__title {
  font-weight: 600;
  font-size: 0.9rem;
}
.beast-notif-item__body {
  font-size: 0.82rem;
  opacity: 0.85;
  margin-top: 0.15rem;
}
.beast-notif-item__meta {
  font-size: 0.72rem;
  opacity: 0.6;
  margin-top: 0.35rem;
}
.beast-notif-empty {
  padding: 1.25rem 0.9rem;
  text-align: center;
  opacity: 0.7;
  font-size: 0.9rem;
}
@media (max-width: 575px) {
  .beast-notif-menu {
    right: -0.5rem;
  }
}
