.custom-emoji {
    font-family: 'RumepLogosSVG', 'RumepLogosCOLR', sans-serif;
    font-size: 1.2em;
    display: inline;
}

.emoji-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
    gap: 10px;
    max-height: 300px;
    overflow-y: auto;
}

.emoji-btn {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.emoji-btn:hover {
    background-color: #f8f9fa;
    transform: scale(1.1);
    transition: all 0.2s ease;
}