.hubdb-search-module {
  font-family: Arial, sans-serif;
  margin: 20px;
}

.search-controls {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  width: fit-content;
}

.search-controls input {
  padding: 8px;
  font-size: 14px;
  width: 400px;
  height: 40px;
}

.search-controls select {
  margin-left: 10px;
  padding: 8px;
  font-size: 14px;
  height: 40px;
}

#clearFilters,
#testPattern {
  padding: 8px 20px;
  margin-left: 10px;
  font-size: 14px;
  background-color: #e3ad88;
  border: none;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  height: 40px;
  line-height: 24px;
}

#clearFilters:hover,
#testPattern:hover {
  background-color: #c3c0a7;
}

.results-table {
  width: 100%;
  border-collapse: collapse;
}

.results-table th,
.results-table td {
  border: 1px solid #ccc;
  padding: 10px;
  text-align: left;
}

.results-table th {
  background-color: #f0f0f0;
}

/* Mobile Responsive Styling */
@media (max-width: 768px) {
  .search-controls {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .search-controls input,
  .search-controls select,
  #clearFilters,
  #testPattern {
    width: 100%;
    margin-left: 0;
    margin