body {
  font-family: Arial, sans-serif;
  background: #bfbfbf;
}

.container {
  width: 500px;
  margin: 50px auto;
}

input {
  width: 100%;
  padding: 10px;
  font-size: 18px;
  border: 2px solid black;
}

.autocomplete {
  border: 2px solid black;
  border-top: none;
}

.autocomplete-item {
  padding: 10px;
  border-top: 2px solid black;
  cursor: pointer;
  background: #d9d9d9;
}

.autocomplete-item:hover {
  background: #6ec1e4;
}

.repo {
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(90deg, #d16ba5, #c777b9);
  border: 2px solid black;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.repo div {
  line-height: 1.5;
}

.delete-btn {
  font-size: 30px;
  color: red;
  cursor: pointer;
  font-weight: bold;
}