Individual button CSS
I added a CSS class called round_button 
 .ui-btn { height: 60px !important;  
 width: 60px !important;  
 border-radius: 80px !important;  
 border: 5px solid red; 
 box-shadow: 10px 10px 5px #888888; 
 }   
 When I apply it to an individual button under more properties all buttons in the app change to round. 
 What am I doing incorrectly?