/* v130: message text was rendering at 13px (v73-stability.css's .message-content{font-size:
   13px!important} was winning the cascade over every other font-size rule in the codebase,
   including novaai.css's own 14px base and v74-human-live-core.css's 0.98rem, since it's the
   only one using !important - !important always wins over a non-important rule regardless of
   load order). Loaded last in index.html's stylesheet list on purpose, so this is the final
   word among the competing !important declarations: bumps message text to a comfortable
   ChatGPT-like reading size (16px / line-height 1.75) instead. */
.message-content{font-size:16px!important;line-height:1.75!important}
@media(max-width:480px){.message-content{font-size:15px!important;line-height:1.7!important}}
