.search-section {
  margin: 40px auto;
  text-align: center;
  max-width: 600px;
}

.search-bar {
  display: flex;
  justify-content: center;
  gap: 2%;
  /*   margin-bottom: 20px; */
}

.search-bar input {
  padding: 10px;
  width: 60%;
  border-radius: 20px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.search-bar button {
  padding: 2% 2%;
  border-radius: 15%;
  border: none;
  background-color: #0077cc;
  color: white;
  cursor: pointer;
}

.search-bar button:hover {
  background-color: black;
}

.results-container {
  text-align: left;
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

.result-item {
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.show-more-btn {
  display: block;
  margin: 20px auto 0;
  padding: 10px 20px;
  background-color: #0077cc;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.show-more-btn:hover {
  background-color: #005fa3;
}
