.filterbox {
  width: 70%;
  margin: 2rem auto;
  padding: 1.5rem;
  background: #f8f9fa;
  border: 2px solid #ccc;
  border-radius: 12px;
  display: flex;
  gap: 2rem;
      row-gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: space-between;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.filterbox label {
  display: flex;
  flex-direction: column;
  flex: 1 1 30%;
  font-weight: 600;
  font-size: 0.95rem;
  color: #333;
}

.filterbox input[type="range"] {
  width: 100%;
  appearance: none;
  height: 10px;
  border-radius: 5px;
  background: linear-gradient(to right, #0077aa, #00aabb);
  outline: none;
  margin-top: 0.5rem;
  margin-bottom: 0.4rem;
  cursor: pointer;
}

.filterbox input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0077aa;
  box-shadow: 0 0 3px rgba(0,0,0,0.2);
  cursor: pointer;
}

.filterbox input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #0077aa;
  cursor: pointer;
}

.filterbox select {
  margin-top: 0.5rem;
  padding: 0.4rem;
  font-size: 0.95rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  background: #fff;
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.filterbox .range-value {
  font-size: 0.85rem;
  color: #444;
}

/* Checkbox Styling */
.checkbox-label {
  flex-direction: row !important;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: #0077aa; /* moderner Browser: Checkbox-Farbe */
  cursor: pointer;
}



.attraktions-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0rem auto;
  max-width: 1200px;
    gap: 2vw;
}
@media (max-width: 767px) {
  .attraktions-wrapper {
    flex-direction: column;
    align-items: center;
  }
}
