#ena-chatwoot-online-status {
  position: fixed;
  right: 14px;
  bottom: 2px;
  z-index: 2147483646;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 78px;
  height: 20px;
  padding: 0 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.98);
  font-family: Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

/* Statut hors ligne par défaut */
#ena-chatwoot-online-status,
#ena-chatwoot-online-status.is-offline {
  color: #b91c1c;
  border: 1px solid #fecaca;
  box-shadow: 0 2px 9px rgba(185, 28, 28, 0.16);
}

/* Statut en ligne */
#ena-chatwoot-online-status.is-online {
  color: #15803d;
  border: 1px solid #86efac;
  box-shadow: 0 2px 9px rgba(21, 128, 61, 0.22);
}

#ena-chatwoot-online-status .ena-online-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #ef4444;
}

#ena-chatwoot-online-status.is-online .ena-online-dot {
  background: #22c55e;
  animation: ena-online-pulse 1.8s infinite;
}

#ena-chatwoot-online-status.is-offline .ena-online-dot {
  background: #ef4444;
  animation: none;
}

#ena-chatwoot-online-status.is-online:hover {
  color: #166534;
  border-color: #4ade80;
  background: #f0fdf4;
}

#ena-chatwoot-online-status.is-offline:hover {
  color: #991b1b;
  border-color: #fca5a5;
  background: #fef2f2;
}

@keyframes ena-online-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.55);
  }

  70% {
    box-shadow: 0 0 0 5px rgba(34, 197, 94, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
  }
}

@media (max-width: 640px) {
  #ena-chatwoot-online-status {
    right: 10px;
  }
}
