#toast-container {
  position: fixed;
  top: 75px;
  right: 20px;
  width: 300px;
  z-index: 9999;
}

.toast-message {
  background-color: #333;
  color: #E7CEAC;
  padding: 10px;
  margin-bottom: 10px;
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
  font-size: 16px;
}

.toast-message.show {
  opacity: 1;
}

.toast-message .close-btn {
  float: right;
  cursor: pointer;
  color: #fff;
  font-size: 16px;
}
