@charset "UTF-8";
/*
 * This is a manifest file that'll be compiled into application.css.
 *
 * With Propshaft, assets are served efficiently without preprocessing steps. You can still include
 * application-wide styles in this file, but keep in mind that CSS precedence will follow the standard
 * cascading order, meaning styles declared later in the document or manifest will override earlier ones,
 * depending on specificity.
 *
 * Consider organizing styles into separate files for maintainability.
 */
/* Inter + Poppins are loaded from the layouts (admin/auth pages only) so
 * public pages don't download fonts they don't use — see layouts/*.html.erb
 * and the PublicFont controller concern. */
/* line 16, app/assets/stylesheets/application.scss */
body {
  /* min-height (not height): a fixed 100vh pins the body box to the viewport
   * while content overflows it, which can defeat compositor scroll fast paths
   * and breaks height:100% descendants on tall pages. */
  min-height: 100vh;
  margin: 0;
  /* Remove default margin */
  padding: 0;
  /* Remove default padding */
  /* Base font so plain (non-Typography) elements don't fall back to the
   * browser-default serif — preflight is off and there's no CssBaseline.
   * Admin/auth resolve to Inter; public pages use the business font. MUI
   * Typography still overrides with Inter/Poppins per the theme. */
  font-family: var(--public-font, "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif);
}

/* line 30, app/assets/stylesheets/application.scss */
.hidden {
  display: none;
}
