/* Budgetdruk V6.2 hotfix
 * Centreer uitsluitend de grote categorie-/centerkolom.
 * Herstel de configurator-grid naar de bestaande layout van vóór de V6.2 card-centering.
 */

/* main_page=index categoriepagina: behoud Bootstrap col-lg breedte, maar centreer de kolom */
body#indexBody #bdCenterColumn.bd-page-column {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Herstel de keuzeblokken/grid zoals in de bestaande Budgetdruk configurator. */
.bd-category-configurator .bd-configurator-options,
.bd-category-wizard .bd-configurator-options {
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr)) !important;
  justify-content: normal !important;
  justify-items: normal !important;
}

/* Op mobiel blijft de bestaande responsive layout leidend; geen geforceerde 2-koloms override. */
@media (max-width: 560px) {
  .bd-category-configurator .bd-configurator-options,
  .bd-category-wizard .bd-configurator-options {
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr)) !important;
  }
}
