In drupal, when you have ajax refreshing some content, elements get new ids when they refresh. So some input element that was "edit-get-score" becomes "edit-get-score-2" then ""edit-get-score-3" etc.
So to match them properly by ID you can use this. Which is CSS attribute selector using sort of a wildcard
input[id^="edit-get-score"]{
background-color: #fff;
border: 2px #F0AA1E solid;
float: right;
}
more on that here
https://www.w3schools.com/css/css_attribute_selectors.asp