/* CashClaim notification center — matches account-card / Dealzkart UI */
.dd-notify-center__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.dd-notify-center__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 7px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #ef4444, #f97316);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.25);
}

.dd-notify-center__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 320px;
  overflow-y: auto;
  margin-top: 10px;
  padding-right: 2px;
}

.dd-notify-center__empty {
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
}

.dd-notify-center__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 234, 255, 0.12);
  background: rgba(15, 23, 42, 0.45);
  color: inherit;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.dd-notify-center__item:hover {
  border-color: rgba(0, 234, 255, 0.28);
  background: rgba(15, 23, 42, 0.62);
}

.dd-notify-center__item.is-unread {
  border-color: rgba(251, 191, 36, 0.45);
  background: rgba(251, 191, 36, 0.06);
}

.dd-notify-center__icon {
  flex: 0 0 auto;
  font-size: 18px;
  line-height: 1.2;
}

.dd-notify-center__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.dd-notify-center__title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
}

.dd-notify-center__msg {
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.dd-notify-center__time {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.45);
}

.dd-notify-center__dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 50%;
  background: #fbbf24;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.65);
}

.header-account-teaser,
.bottom-item[data-page="account"] {
  position: relative;
}

.dd-account-notif-badge,
.dd-header-notif-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  color: #fff;
  background: #ef4444;
  border: 2px solid rgba(15, 23, 42, 0.95);
  pointer-events: none;
}

.header-account-teaser .dd-header-notif-badge {
  top: 2px;
  right: -2px;
}

.bottom-item[data-page="account"] .dd-account-notif-badge {
  top: 0;
  right: 2px;
}

.bottom-item[data-page="account"].has-notif-badge .bottom-account-fallback,
.bottom-item[data-page="account"].has-notif-badge .bottom-profile-avatar {
  box-shadow: 0 0 0 2px rgba(251, 191, 36, 0.35);
}
