Write a function format_team_name that receives a string containing a basketball team name possibly padded with spaces. The function should return the name stripped of leading/trailing whitespace and converted to uppercase.
Examples:
format_team_name(" Lakers ") == "LAKERS"
format_team_name("celtics") == "CELTICS"