.hover-text {
  transition: color 0.3s ease;
}

.hover-text:hover {
  color: #2b50ec;
}


.searchandfilter {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem auto;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid #dce3f0;
  background: #f0f4ff;
  justify-content: center;
  max-width: 900px;
  text-align: center;
}

.searchandfilter select,
.searchandfilter input[type="text"],
.searchandfilter input[type="submit"] {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  min-width: 200px;
  max-width: 300px;
}

.searchandfilter input[type="submit"] {
  background-color: #291aaf;
  color: #fff;
  font-weight: bold;
  border: none;
  transition: background 0.3s ease;
}

.searchandfilter input[type="submit"]:hover {
  background-color: #1e138a;
}

@media (max-width: 768px) {
  .searchandfilter {
    flex-direction: column;
    align-items: center;
  }
}



