/* Algemene styling voor de navigatieknoppen */
.fixed-nav-button {
  position: fixed;
  top: 50%;
  transform: translateY(-2rem);
  width: 4rem;
  height: 4rem;
  color: white;
  border-radius: 1rem 1rem 0 1rem;
  padding: 1.15rem 1rem;
  box-sizing: border-box;
  position: fixed;
  background-color: #909f64; /* Je gewenste achtergrondkleur */
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  border-radius: 13px; /* Algemene border-radius */
}
.fixed-nav-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  color: white;
}

.fixed-nav-button.disabled {
  background-color: rgba(144, 159, 100, 0.2);
}

/* Specifieke styling voor de 'Vorige' knop (links) */
.fixed-nav-button.prev-button {
  left: 3rem;
  border-radius: 13px 13px 13px 0; /* Border-radius voor de linkerknop */
}

/* Specifieke styling voor de 'Volgende' knop (rechts) */
.fixed-nav-button.next-button {
  right: 3rem;
  border-radius: 13px 13px 0 13px; /* Border-radius voor de rechterknop */
}
