#game-search-bar {
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin: 20px 0 20px 0;
  height: 42px;
}

#game-search-bar button {
  float: left;
  height: 42px;
  width: 20%;
  padding: 10px;
  background: #2196F3;
  color: white;
  font-size: 17px;
  border: 1px solid grey;
  border-left: none; /* Prevent double borders */
  cursor: pointer;
}

#game-search-bar button:hover {
  background: #0b7dda;
}

#game-search-bar input[type=text] {
  padding: 10px;
  font-size: 17px;
  border: 1px solid grey;
  float: left;
  width: 80%;
  background: var(--color-bg);
  color: var(--color-txt);
}

#game-search-bar::after {
  content: "";
  clear: both;
  display: table;
}
