.ecp-emoji-picker-wrap {
    position: relative;
    display: inline-block;
    margin-bottom: 8px;
}

.ecp-emoji-btn {
    font-size: 20px;
    line-height: 1;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50%;
    cursor: pointer;
    height: 32px;
    width: 32px;
    margin-bottom: 4px;
    transition: background 0.2s;
}
.ecp-emoji-btn:hover {
    background: #f0f0f0;
}
.ecp-emoji-picker {
    display: none;
    position: absolute;
    left: 0;
    bottom: 40px; /* для вытягивания ВЫШЕ */
    z-index: 1000;
    width: 350px;
    max-width: 98vw;
    max-height: 230px;
    padding: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22);
}
.ecp-emoji-scroller {
    max-height: 220px;
    overflow-y: auto;
    padding: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    box-sizing: border-box;
}
.ecp-emoji-item {
    font-size: 25px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 6px;
    transition: background 0.2s;
}
.ecp-emoji-item:hover {
    background: #f4f4f4;
}