/*
 * 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.
 */

/* Body and HTML base setup */
html,
body {
  height: 100%;
  margin: 0;
}

/* Main container layout */
main.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Content wrapper - will take up remaining space */
.content-wrapper {
  flex: 1 0 auto;
  width: 100%;
}

/* Footer wrapper */
.footer-wrapper {
  flex-shrink: 0;
  width: 100%;
  background-color: white;
  padding-top: 2rem;
  margin-top: auto;
  z-index: -1;
}