/* === filters === */

.filters-bar {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
}

.filters-form {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.85rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  flex: 1;
  min-width: 200px;
  background: #FFF;
}

.search-box svg { color: var(--text-muted); flex-shrink: 0; }

.search-box input {
  border: none;
  outline: none;
  font-size: 0.9rem;
  width: 100%;
  font-family: var(--font);
  background: transparent;
}

.filters-form select {
  padding: 0.5rem 0.75rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xs);
  font-size: 0.85rem;
  font-family: var(--font);
  background: #FFF;
  color: var(--text);
  cursor: pointer;
}
