

#filters {
  display: flex;
  /*flex-wrap: wrap;*/
  gap: 0.5rem;
  margin-bottom: 1rem;
  justify-content: first baseline;
}

/*#filters>div {
  min-width: 10px;
  flex: 1 1 50px;
}*/

#filters label {
  display: block;
  margin-bottom: 0rem;
  font-size: 0.9em;
}

@media (max-width: 600px) {
  #filters {
    flex-direction: column;
  }

  #filters>div {
    width: 100%;
  }
}


details {
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 0.3em 0.5em;

  /*background-color: #f9f9f9;*/
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
}

summary {
  cursor: pointer;
  white-space: nowrap;
  font-size: 15px;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::before {
  content: "▶";
  display: inline-block;
  margin-right: 8px;
  transition: transform 0.2s ease;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  margin: 10px 0 0;
}