/* Styles pour la section Plus de filtres */
.more-filters-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 15px;
  max-width: 600px;
}

.more-filters-content label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #333;
}

.more-filters-content input[type="checkbox"] {
  margin-right: 8px;
  width: 16px;
  height: 16px;
  accent-color: #1a7f37;
}

.more-filters-content input[type="number"] {
  width: 70px;
  padding: 5px;
  margin-left: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.more-filters-content select {
  margin-left: 8px;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.more-filters-section {
  grid-column: 1 / -1;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

.more-filters-section h4 {
  margin: 0 0 10px 0;
  color: #1a7f37;
  font-size: 15px;
  font-weight: 600;
}

/* Tabs pour les filtres */
.more-filters-tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}

.more-filters-tab {
  padding: 8px 15px;
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  color: #666;
  font-weight: 500;
  cursor: pointer;
}

.more-filters-tab.active {
  color: #1a7f37;
  border-bottom-color: #1a7f37;
}

/* Bouton d'application des filtres */
.apply-filters-btn {
  grid-column: 1 / -1;
  margin-top: 15px;
  padding: 10px;
  background-color: #1a7f37;
  color: white;
  border: none;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}

.apply-filters-btn:hover {
  background-color: #156129;
}

/* Groupes de filtres */
.filter-group {
  display: contents;
}

.filter-group-title {
  grid-column: 1 / -1;
  margin: 10px 0 5px;
  color: #1a7f37;
  font-weight: 600;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 5px;
}
