.my-toast-popup {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  border-radius: 10px;
  box-shadow: none;
  padding: 16px !important;
}

.swal2-html-container {
  width: 100% !important;
}

.my-toast-popup.success {
  background: linear-gradient(180deg, #00ff00 0%, #235f14 63.94%, #43c529 100%);
}

.my-toast-popup.error {
  background: linear-gradient(180deg, #ff0000 0%, #5f141a 63.94%, #c52936 100%);
}

.my-toast-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
  height: 100%;
  text-align: center;
}

.my-toast-icon {
  flex-shrink: 0;
}

.my-toast-message {
  flex: 1;
  color: #ffffff;
  font-size: 20px;
}

.my-toast-close-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
