/* ------------------------------
   Layout: constrain page width
------------------------------ */

/* Center the entire page body */
.wrapper-body {
    display: flex;
    justify-content: center; /* center content horizontally */
}

/* Limit width of main content, section containers, and columns */
.wrapper-body .page-copy,
.sectionBlockLayout .container,
.sectionBlockLayout .columnBlockLayout {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    flex: 0 0 1200px; /* ensures fixed width for columnBlockLayout */
}


/* ------------------------------
   Form container styling
------------------------------ */

/* Light gray background panel for the form */
.crmEntityFormView {
    padding: 20px;              /* breathing room inside panel */
    border-radius: 6px;         /* optional: soften corners */
}

