.elevate-notification-shell {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  z-index: 1050;
}

.elevate-notification-button {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 14px;
  background: #ffffff;
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
  cursor: pointer;
}

.elevate-notification-icon {
  font-size: 20px;
}

.elevate-notification-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #dc2626;
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 20px;
  text-align: center;
  box-shadow: 0 0 0 3px #ffffff;
}

.elevate-notification-dropdown {
  position: absolute;
  top: 50px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 24px);
  border-radius: 18px;
  border: 1px solid rgba(15, 23, 42, 0.10);
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
  overflow: hidden;
}

.elevate-notification-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: linear-gradient(135deg, #eff6ff, #ffffff 60%, #fffbeb);
}

.elevate-notification-head strong {
  display: block;
  color: #0f172a;
  font-size: 15px;
}

.elevate-notification-head small {
  display: block;
  color: #64748b;
  margin-top: 2px;
  font-size: 12px;
}

.elevate-notification-readall {
  border: 0;
  background: transparent;
  color: #2563eb;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.elevate-notification-list {
  max-height: 340px;
  overflow-y: auto;
}

.elevate-notification-item {
  display: grid;
  grid-template-columns: 10px 1fr;
  gap: 10px;
  padding: 13px 16px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.elevate-notification-item:hover {
  background: #f8fafc;
  text-decoration: none;
}

.elevate-notification-dot {
  width: 8px;
  height: 8px;
  margin-top: 7px;
  border-radius: 999px;
  background: transparent;
}

.elevate-notification-item.is-unread .elevate-notification-dot {
  background: #2563eb;
}

.elevate-notification-body strong {
  display: block;
  font-size: 14px;
  color: #0f172a;
}

.elevate-notification-body p {
  margin: 4px 0 3px;
  color: #475569;
  font-size: 13px;
  line-height: 1.45;
}

.elevate-notification-body small {
  color: #94a3b8;
  font-size: 11px;
}

.elevate-notification-empty {
  padding: 18px 16px;
  color: #64748b;
  text-align: center;
  font-size: 13px;
}

.elevate-notification-footer {
  padding: 12px 16px;
  text-align: center;
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  background: #f8fafc;
}

.elevate-notification-footer a {
  color: #2563eb;
  font-weight: 800;
  font-size: 13px;
  text-decoration: none;
}

.d-none {
  display: none !important;
}
