.search-container {
  display: flex;
  justify-content: right;
  align-items: center;
  margin: 20px auto;
  padding: 10px;
}

.search-container input {
  padding: 5px 8px;
  font-size: 13px;
  border: 2px solid red;
  border-radius: 5px 0 0 5px;
  outline: none;
  width: 200px;
  background-color: black;
  color: white;
}

.search-container button {
  padding: 10px 15px;
  background-color: red;
  border: none;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  color: white;
  font-size: 16px;
  transition: background 0.3s ease;
}

.search-container button:hover {
  background-color: #ff1a1a;
}

.search-container i {
  pointer-events: none;
}

mark {
  background-color: red;
  color: white;
  padding: 2px 4px;
  border-radius: 3px;
  font-weight: bold;
  animation: fadeHighlight 0.5s ease-in-out;
}

@keyframes fadeHighlight {
  from { background-color: black; color: red; }
  to { background-color: red; color: white; }
}

