/**
 * admin_chat_moderation.css - Styles pour modération chat
 */

/* ============================================================
   CROIX SUPPRESSION MESSAGE
   ============================================================ */

.blx-delete-chat-msg {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  width: 24px !important;
  height: 24px !important;
  padding: 0 !important;
  background: rgba(220, 38, 38, 0.95) !important;
  color: white !important;
  border: none !important;
  border-radius: 50% !important;
  font-size: 14px !important;
  font-weight: bold !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  opacity: 0 !important;
  visibility: hidden !important;
  z-index: 100 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
}

/* Afficher au survol du message */
.message:hover .blx-delete-chat-msg {
  opacity: 1 !important;
  visibility: visible !important;
}

.blx-delete-chat-msg:hover {
  background: rgba(185, 28, 28, 1) !important;
  transform: scale(1.15) !important;
  box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4) !important;
}

.blx-delete-chat-msg:active {
  transform: scale(0.95) !important;
}

/* ============================================================
   ANIMATION DE SUPPRESSION
   ============================================================ */

.message {
  transition: opacity 0.3s ease, transform 0.3s ease !important;
}
