.ecp-emoji-picker-inside-wpd {
    position: relative;
    display: block;
}

.ecp-emoji-btn {
    font-size: 100%;
    line-height: 1;
    background: #fff;
    border: 0px 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-btn.ecp-wpd-btn {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 11;
    background: #fff;
    border: 0px solid #ccc;
    border-radius: 50%;
    font-size: 20px;
    width: 32px;
    height: 32px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.ecp-emoji-picker {
    display: none;
    position: fixed;
    z-index: 99999;
    min-width: 281px;
    max-width: 96vw;
    max-height: 230px;
    margin-right: 30px;
    background: #fff;
    border: 0px solid #ddd!important;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.22);
    padding: 0;
}

.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;
}