.bell-floating {
  position: fixed;        /* 👈 هەمیشە لەسەر شاشە */
  top: 16px;
  right: 16px;

  width: 46px;
  height: 46px;
  border-radius: 50%;

  background: #ffffff;
  border: none;
  cursor: pointer;

  z-index: 2147483647;    /* 👈 لەسەر هەموو شتێک */
  
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 4px 10px rgba(0,0,0,.25);
}

/* 🔴 ژمارە */
.bell-floating .count {
  position: absolute;
  top: -6px;
  right: -6px;

  background: red;
  color: white;
  font-size: 12px;
  min-width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  border-radius: 50%;
}

/* 🌫️ overlay */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9999;
  display: none;
}

/* 📢 پانێڵ */
.panel {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  background: #fff;
  z-index: 10000;
  padding: 20px;
  transition: 0.35s ease;
  overflow-y: auto;
}

/* پانێڵ کراوە */
.panel.open {
  right: 0;
}

/* overlay کراوە */
.overlay.show {
  display: block;
}

/* 📝 نوت */
.note {
  background: #e3f2fd;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 12px;
}
