/* EMOJI PICKER */

.emoji-picker { display:none; position:absolute; bottom:64px; right:18px; background:var(--surface); border:1px solid var(--border); border-radius:18px; padding:14px; width:310px; z-index:100; box-shadow:0 12px 40px rgba(0,0,0,0.4); }

.emoji-picker.open { display:flex; flex-wrap:wrap; gap:4px; }

.emoji-picker .e { width:38px; height:38px; border-radius:10px; display:flex; align-items:center; justify-content:center; cursor:pointer; font-size:1.25rem; transition:all .15s ease; }

.emoji-picker .e:hover { background:var(--surface2); transform:scale(1.15); }

.emoji-picker .r { display:flex; gap:3px; flex-wrap:wrap; }

.emoji-picker .r .e { width:34px; height:34px; font-size:1.05rem; }

.msg-reactions { }