/*
================================================================================
SILVERPAUL FORUM - BASE STYLES MODULE
================================================================================
This module contains global HTML/body styles, font defaults, and basic layout foundations.
Extracted from base.css on July 24, 2025
Load Order: After variables.css, before other modules
================================================================================
*/

/* ==========================================================================
   BASE STYLES AND GLOBAL LAYOUT
   ========================================================================== */

html, body
{
  height: auto; 
  width: 100%;
  /* Removed max-width constraint - now handled by .app-layout grid container */
  background-color: var(--neutral-50);
  margin: 0; /* Remove auto margin, now handled by grid container */
  font-size: 100%;
  /* Support modern layout with minimal height for grid */
  min-height: 100vh;
  /* Prevent horizontal overflow at root level */
  overflow-x: hidden;
  box-sizing: border-box;
}