/* ============================================================
   🟨 VTV 2025 – FILTERS (SUBTIEL + COMPACT + CORRECT RESET ICON)
   ============================================================ */

.vtv-filters {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: 11px;
}

/* === FILTER BAR === */
.vtv-filter-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* === FILTER FIELDS (3 stuks) === */
.vtv-filter-group {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
}

/* alleen ruimte tussen de 3 dropdownvelden, NIET na de laatste */
.vtv-filter-group:not(:last-of-type) {
  margin-right: 10px;
}
@media (max-width: 768px) {
  .vtv-filter-group:not(:last-of-type) {
    margin-right: 7px;
  }
}

/* === FILTER DROPDOWNS === */
.vtv-filter-select {
  width: 100%;
  padding: 4px 10px 4px 12px; /* compacte hoogte + 8px extra links */
  background: #fff;
  border: 1px solid #d4dae6;
  border-radius: 4px;
  font-size: 10px; /* minimale subtiele tekst */
  font-weight: 500;
  color: #1f2937;
  cursor: pointer;
  transition: all 0.2s ease;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='5' viewBox='0 0 8 5' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L4 4L7 1' stroke='%23718096' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 26px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}

.vtv-filter-select:hover {
  border-color: #5d6ca8;
  background-color: #fafbfd;
}

.vtv-filter-select:focus {
  outline: none;
  border-color: #5866AA;
  box-shadow: 0 0 0 2px rgba(88, 102, 170, 0.1);
}

.vtv-filter-select option:first-child {
  display: none;
}

/* === RESET BUTTON === */
.vtv-filter-reset {
  background: transparent;
  border: none;
  margin-left: 6px; /* dichter bij de tijd-filter */
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  transition: transform 0.3s ease;
}

.vtv-filter-reset:hover {
  transform: rotate(-180deg);
}

.vtv-filter-reset:active {
  transform: rotate(-180deg) scale(0.9);
}

.vtv-filter-reset img {
  width: 14.95px; /* 🔹 15% groter (van 13px → 15px afgerond) */
  height: 14.95px;
  display: block;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}

.vtv-filter-reset:hover img {
  opacity: 0.9;
}