/* Basic styling */
.search-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  height: 1.5rem;
  border-radius: 10px;
  border: 1px solid rgb(255, 255, 254);
  overflow: hidden;
}

/* Styling the input */
.search-bar input {
  width: 100%;
  letter-spacing: 3px;
  font-size: 16px;
  padding: 8px;
  border-radius: 10px;
  background-color: transparent;
  border: none;
  outline: none;
}
/* Styling the button */
.search-bar button {
  border-radius: 0px 10px 10px 0px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.5rem;
  height: 100%;
  color: rgb(3, 3, 3);
  border: none;
  /* padding: 10px 10px; */
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s;
}
.fa-magnifying-glass {
  color: #ffffff;
}
.search-bar button:hover {
  background-color: #bcbcbc; /* Darker blue on hover */
}
input::placeholder {
  color: white;
  font-size: 14px;
}

/* Responsive styling */
@media (max-width: 1100px) {
  .search-bar {
    width: 30%;
  }
  input {
    padding: 8px;
  }
  button {
    background-color: transparent;
  }
}
@media (max-width: 758px) {
  .search-bar {
    width: 50%;
  }
}
