.toast-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100000;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toastNotification {
  position: relative;
  text-align: left;
  padding: 0.7rem 1rem;
  border-radius: 5px;
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.9rem;
  opacity: 0;
  min-width: 300px;
  transform: translateX(120%);
  transition: opacity 0.2s ease-out, transform 0.3s ease-out;
  pointer-events: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.toastNotification.show {
  opacity: 1;
  transform: translateX(0);
}

.toastNotification > i:first-child {
  font-size: 1.8rem;
  padding: 3px;
}

.toastClose {
  font-size: 1.4rem;
  padding: 5px;
  border-radius: 50%;
  transition: 0.2s;
  cursor: pointer;
  margin-left: auto;
}

.toastClose:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

/* Success toast */
.toastSuccess {
  background-color: #edf7ed;
  color: #1f4621;
}

.toastSuccess > i:first-child {
  color: #418944;
}

/* Error toast */
.toastError {
  background-color: #fdeded;
  color: #5e2021;
}

.toastError > i:first-child {
  color: #d74242;
}

/* Information toast */
.toastInformation {
  background-color: #e5f6fd;
  color: #064360;
}

.toastInformation > i:first-child {
  color: #329fda;
}

/* Warning toast */
.toastWarning {
  background-color: #fff4e5;
  color: #653c07;
}

.toastWarning > i:first-child {
  color: #ed782f;
}
