.wptm-reactions-wrapper {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.wptm-reaction-btn {
    background: #f8f9fa;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #4a5568;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.wptm-reaction-btn:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
}

.wptm-reaction-btn:focus {
    outline: none;
}