.site-wrapper {
  min-height: 100vh; /* Make sure the wrapper fills at least the viewport height */
  display: flex;     /* Use flexbox to organize children */
  flex-direction: column; /* Stack children vertically */
  align-items: center;
}

main.page-content {
  width: 100%;
  flex-grow: 1;
  padding-top: 2rem !important;
}

.container-lg {
  max-width: 1200px;
  margin: 0 auto;   
  padding: 0 15px;   
}

.site-footer {
  width: 100%;
}

/* Warning Callout Styling */
.warning {
  padding: 1em;
  margin: 1em 0;
  border-left: 5px solid #ff4b4b;
  background-color: #fff2f2;     
  border-radius: 4px;
  color: #333;
}

.warning a {
  font-weight: bold;
  text-decoration: underline;
  color: #d00000;
}