#alerts-container {
  position: fixed;
  bottom: 1.5em;
  right: 1.5em;
  width: 25em;
}

.alert-box {
  background-color: #fff;
  border: 0.1em solid #ccc;
  border-radius: 0.5em;
  box-shadow: 0.2em 0.2em 0.8em rgba(0, 0, 0, 0.1);
  padding: 1em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.alert-message {
  font-size: 1.2em;
  margin: 0;
  padding: 1em;
}

.close-button {
  background-color: transparent;
  border: none;
  color: #aaa;
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  cursor: pointer;
}
