.filter-buttons {
  margin-bottom: 20px;
}

.filter-buttons button {
  padding: 10px 20px;
  margin-right: 10px;
  border: none;
  background-color: #eee;
  cursor: pointer;
  transition: background-color 0.3s;
  border-radius: 5px;
}

.filter-buttons button.active {
  background-color: #0fb78d;
  color: white;
}

.galitems {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* .galitem {
  flex: 1 1 150px;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  transition: all 0.3s ease;
} 
*/

/* Animiertes Ein-/Ausblenden */
.galitem.hide {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
}

.galitem.show {
  opacity: 1;
  transform: scale(1);
  position: relative;
  pointer-events: auto;
}