Extend your grade calculator. Add validation using conditionals:
- If the input is empty, show
"Please enter a score"
- If the score is not between 0 and 100, show
"Score must be 0-100"
- Only calculate the grade if the input passes validation
Bonus: Change the result text color based on the grade (green for A/B, red for D/F).