#combo-search-wrapper {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(135deg, #c471f5, #fa71cd);
  min-height: 100vh;
  color: white;
}

.combo-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  font-weight: bold;
}

.combo-search-bar {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.combo-search-bar input {
  padding: 10px;
  width: 300px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.combo-search-bar button {
  padding: 10px 20px;
  background: black;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
}

.combo-item {
  background: rgba(255, 255, 255, 0.1);
  margin: 10px auto;
  padding: 15px;
  border-radius: 8px;
  max-width: 500px;
  text-align: left;
}
