@ChildContent
@code {
///
/// Gets or sets the content rendered inside the page body wrapper.
///
[Parameter]
public RenderFragment? ChildContent { get; set; }
///
/// Gets or sets additional CSS classes appended to the wrapper. Use this to apply
/// the page's own padding/margin (e.g. "px-4 mb-4") while the wrapper guarantees a
/// minimum height so header dropdowns and popovers don't get clipped on short pages.
///
[Parameter]
public string Class { get; set; } = string.Empty;
}