.search-box {
  background: white;
  padding: 20px;
  border-radius: 8px;
  max-width: 800px;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  box-sizing: border-box;
}

.search-box input,
.search-box button {
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
  flex-grow: 1;
  min-width: 120px;
}

.search-box input:focus {
  outline: none;
  border-color: #007BFF;
}