/* Search feature */
#search-results {
  opacity: 0;
  transition: opacity 1s ease-out;
}
#search-results.show {
  opacity: 1;
}

.no-games-found,
.searched-game {
  background-color: #282828;
  transition: all 0.5s ease-in;
}
.searched-game {
  border-bottom: 1px solid #dcb25a;
}
.no-games-found {
  border: 1px solid red;
  border-radius: 0.3rem;
}

.searched-game:hover,
.searched-game:focus {
  background-color: #0b0b0b;
  border-color: #ff6464;
}

.searched-game a {
  text-decoration: none;
  color: #fff;
}
.searched-game img {
  width: 75px;
  object-fit: cover;
}
