.toast-container {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
}

.my-toast {
  /* position: fixed;
  top: 20px;
  left: 50%;
  top: 0px; */
  transform:  translateY(20px);
  margin-bottom: 20px;
  padding: 10px 20px;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08),
    0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out forwards;
}

.my-toast .toast-icon {
  width: 16px;
  height: 16px;
  vertical-align: text-bottom;
  margin-inline-end: 8px;
  font-size: 16px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}
