/* Bouton notification très petit et discret */
.notif-btn {
  font-size: 12px;
  padding: 4px 6px;
  border-radius: 6px;
  background: #25d366; /* vert WhatsApp */
  color: #111;
  border: none;
  cursor: pointer;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 30;
  pointer-events: auto;  /* activé pour cliquer */
}

.notif-btn #notif-badge {
  font-size: 10px;
  padding: 1px 4px;
  border-radius: 50%;
  background: #ff1e1e;
  color: #fff;
  vertical-align: top;
  margin-left: 4px;
}

#notif-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: red;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 50%;
  display: none;
}

#notif-badge.pulse {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse 1s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.3); }
  100% { transform: scale(1); }
}





