#updatelog {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-height: 350px;
  overflow: auto;
}

#updatelog .log-message {
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2em;
  color: #000;
  background-color: #f0f0f0;
  padding: 5px;
  margin: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#updatelog .log-message.info {
  color: #c7c700;
  background-color: #ffff70;
}

#updatelog .log-message.info::before {
  content: "❗";
}

#updatelog .log-message.error {
  color: #f00;
  background-color: #ffcccc;
}

#updatelog .log-message.error::before {
  content: "❌";
}
