:root {
  --toastify-color-light: #fff;
  --toastify-color-success: rgba(41, 204, 167, 1);
  --toastify-color-warning: rgba(255, 166, 34, 1);
  --toastify-color-error: rgba(255, 82, 82, 1);
  --toastify-text-color-success: rgba(41, 204, 167, 1);
  --toastify-text-color-warning: rgba(255, 166, 34, 1);
  --toastify-text-color-error: rgba(255, 82, 82, 1);
  --toastify-toast-min-height: 50px;
}
.app-toast {
  min-width: 300px;
}
.app-toast > div {
  border-radius: 12px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  font-size: 12px;
  font-weight: 600;
  font-family: "SF Pro Display", sans-serif !important;
  cursor: default;
  margin-bottom: 0px;
  padding: 0 16px;
  width: fit-content;
}
.app-toast .content {
  display: flex;
  align-items: center;
}
.app-toast .content h5 {
  flex-grow: 1;
  width: max-content;
}
.app-toast .content .undo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 72px;
  height: 34px;
  background-color: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
  border-radius: 6px;
  margin-left: 8px;
}
.app-toast .content .divider {
  width: 0px;
  height: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  margin: 0 20px 0 12px;
}