.wpr-reactions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.wpr-reaction-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.wpr-reaction-item:hover {
    transform: scale(1.2);
    background-color: #eee;
    border-radius: 8px; 
    padding: 4px; 
    transition: all 0.2s ease; 
}

.wpr-reaction-item.voted {
    cursor: not-allowed;
    opacity: 0.7;
}

.wpr-emoji {
    font-size: 28px;
    line-height: 1;
}

.wpr-reaction-count {
    font-size: 14px;
    font-weight: bold;
    color: #555;
    margin-top: 5px;
}