Adding CSS styles to Admin Area PAGES only (not POSTS or CPT)

Like the front-end in WordPress, the admin pages have various css classes added to the <body> tag.

You could use:

body.post_type-page .fun-stuff-here {
  color:aqua;
}

Keep your action the same – the CSS will be loaded everywhere on admin, but only becomes relevant in the Pages section.

(There’s a post_type-... for each.)