/* Search Container */
.search-container {
  margin: 20px 0;
  text-align: center;
}

/* Wrapper input + button */
.search-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: 0 auto;
  gap: 5px;
}

/* Input search */
.search-wrapper input[type="text"] {
  flex: 1;
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 5px 0 0 5px;
  transition: all 0.3s ease;
}

.search-wrapper input[type="text"]:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

/* Button with icon */
.search-wrapper button {
  padding: 10px 15px;
  background-color: #007bff;
  color: #fff;
  font-size: 16px;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-wrapper button:hover {
  background-color: #0056b3;
}

/* Feather icon inside button */
.search-wrapper button i {
  stroke-width: 2.5;
}

/* Responsive */
@media (max-width: 600px) {
  .search-wrapper {
    flex-direction: column;
  }

  .search-wrapper input[type="text"],
  .search-wrapper button {
    width: 100%;
    border-radius: 5px;
  }

  .search-wrapper button {
    margin-top: 5px;
  }
}
