Avoid using !important in properties. It is usually indicative of a misunderstanding of CSS specificity and can lead to brittle code.
!important
Bad
p { color: #f00 !important;}
Good
p { color: #f00;}