/* ========================================
   NO TEXT SELECTION — Clairval
   Empêche le surlignage bleu sur l'UI de jeu
   Exceptions : chat, champs de saisie, zones opt-in
   ======================================== */

html,
body,
body * {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
}

/* Zones où la sélection reste utile */
input,
textarea,
select,
[contenteditable="true"],
.allow-text-selection,
.allow-text-selection *,
#chat,
#chat *,
.chat-container,
.chat-container *,
.stream-chat,
.stream-chat * {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    -webkit-touch-callout: default;
}

/* Boutons et contrôles cliquables : pas de surlignage */
button,
button *,
[role="button"],
[role="button"] *,
.btn,
.btn * {
    user-select: none;
    -webkit-user-select: none;
}
