/* === DESKTOP TOOLBAR === */
.archive-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  gap: 20px;
}

.toolbar-center {
  flex: 0 0 80%;
  text-align: center;
}

/* === GEMEENSCHAPPELIJKE KNOPSTIJL === */
.filter-toggle,
.sort-toggle,
#filter-toggle,
#sort-toggle {
  background-color: var(--secondary-color);
  color: var(--white-color);
  padding: 10px 16px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
}

/* === MOBIEL === */
.mobile-toolbar-buttons {
  display: none; /* standaard verbergen */
}

@media screen and (max-width: 768px) {
  .toolbar-left,
  .toolbar-right {
    display: none; /* desktopversie verbergen */
  }

  .toolbar-center {
    flex: 0 0 100%;
    text-align: center;
  }

  .mobile-toolbar-buttons {
    display: block;
  }

  #filter-toggle,
  #sort-toggle {
    position: fixed;
    z-index: 1000;
    padding: 12px 16px;
    font-size: 0.875rem;
    text-transform: uppercase;
    background-color: var(--secondary-color);
    color: var(--white-color);
    border: none;
  }

  #filter-toggle {
    bottom: 20px;
    left: 20px;
    margin: 10px;
  }

  #sort-toggle {
    bottom: 20px;
    right: 20px;
    margin: 10px;
  }
}
