/* ── Emoji Picker v17 – shared styles ── */
.gm-emoji-wrap { position: relative; display: inline-flex; align-items: center; }
.gm-emoji-trigger { width: 36px; height: 34px; border-radius: 7px; border: 1px solid #334155; background: #0f172a; font-size: 1.15em; cursor: pointer; text-align: center; line-height: 34px; padding: 0; flex-shrink: 0; transition: border-color .15s; }
.gm-emoji-trigger:hover { border-color: var(--accent2, #00aaff); }
.gm-emoji-panel { display: none; position: fixed; z-index: 99999; width: 380px; max-height: 430px; background: #131b2e; border: 1px solid #334155; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.6); flex-direction: column; overflow: hidden; }
.gm-emoji-panel.open { display: flex; }
.gm-ep-header { padding: 10px 10px 6px; border-bottom: 1px solid #232b45; }
.gm-ep-search { width: 100%; padding: 7px 10px; border-radius: 6px; border: 1px solid #334155; background: #0f172a; color: var(--text, #e2e8f0); font-size: .88em; box-sizing: border-box; }
.gm-ep-search:focus { outline: none; border-color: var(--accent2, #00aaff); }
.gm-ep-cats { display: flex; gap: 2px; padding: 6px 10px 4px; border-bottom: 1px solid #232b45; flex-wrap: nowrap; overflow-x: auto; }
.gm-ep-cats button { background: transparent; border: none; font-size: 1.15em; cursor: pointer; padding: 4px 6px; border-radius: 5px; opacity: .5; transition: opacity .15s, background .15s; flex-shrink: 0; }
.gm-ep-cats button:hover, .gm-ep-cats button.active { opacity: 1; background: rgba(255,255,255,.08); }
.gm-ep-grid { display: grid; grid-template-columns: repeat(9, 1fr); gap: 2px; padding: 8px; overflow-y: auto; flex: 1; max-height: 320px; }
.gm-ep-grid span { font-size: 1.35em; text-align: center; cursor: pointer; padding: 4px 0; border-radius: 5px; transition: background .12s; line-height: 1.4; }
.gm-ep-grid span:hover { background: rgba(255,255,255,.1); }
.gm-ep-empty { text-align: center; color: var(--muted, #94a3b8); padding: 24px 8px; font-size: .88em; grid-column: 1/-1; }
