/* Zorg dat de container een flexbox is */
.l-rw.regions.container.pr-main__rw {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start !important;
}

/* De Hoofdinhoud */
.l-pr.page__row.pr-main__content {
  flex: 0 0 70% !important;
  width: 70% !important;
}

/* De Zijbalk (nu met de juiste class uit je screenshot) */
.pr-main__sidebar-first {
  flex: 0 0 28% !important;
  width: 28% !important;
  margin-right: 2% !important;
  background-color: #f4f4f4 !important; /* Lichtgrijs om het te zien */
  padding: 15px !important;
  border: 1px solid #ddd !important;
}

/* Voor de zekerheid: als hij rechts staat en links moet */
.pr-main__sidebar-first {
  order: -1 !important;
}
/* Geef de zijbalk wat meer body en witruimte */
.pr-main__sidebar-first {
  background-color: #ffffff !important; /* Wit in plaats van grijs voor een schone look */
  padding: 20px !important;
  border-left: 1px solid #eeeeee !important; /* Subtiel lijntje tussen tekst en zijbalk */
  border-right: none !important;
}

/* Maak de titels in de zijbalk (zoals 'Hulpmiddelen') mooier */
.pr-main__sidebar-first h2 {
  color: #d35400; /* Bijvoorbeeld een kleur die bij de oranje balk past */
  font-size: 1.4em;
  border-bottom: 2px solid #f39c12;
  padding-bottom: 5px;
  margin-bottom: 15px;
}

/* Zorg dat de links in de zijbalk niet zo op elkaar gepakt zitten */
.pr-main__sidebar-first ul {
  list-style: none;
  padding: 0;
}

.pr-main__sidebar-first li {
  padding: 8px 0;
  border-bottom: 1px dotted #ccc;
}