.search-bar .custom-input {
  position: relative;
  margin-top: 2.5rem;
  height: 45px;
}

.search-bar .custom-input input::placeholder {
  color: #999;
  font-style: normal;
  transition: color 0.3s ease;
}

.search-bar .custom-input input {
  background-color: white !important;
  margin-top: 0px !important;
}

.search-bar .custom-input input:focus {
  outline: none;
}

.search-bar .custom-input input#search-bar:focus::placeholder {
  color: transparent;
}

/* Contenedor de los resultados */
.search-bar .result-content {
  position: absolute;
  z-index: 10;
  left: 0px;
  top: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background-color: white;
  width: 100%;
  border-top: 1px solid gainsboro;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.search-bar .container-hidden {
  display: none;
}

.search-bar .result-content #results {
  margin: 0;
  padding: 0px;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
}

.search-bar .result-content #results li {
  border-bottom: 1px solid gainsboro;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.search-bar .result-content #results li.active {
  background-color: gainsboro;
}

.search-bar .result-content #results li a {
  padding: 8px 6px;
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: rgb(53, 53, 53);
}

.search-bar .result-content #results li:hover {
  background-color: rgba(31, 31, 31, 0.08);
}

.search-bar .result-content img {
  width: 50px;
  margin: 0.5rem;
  align-self: flex-end;
  object-fit: cover;
  border-radius: 6px;
}