.Toastify .Toastify__toast-container {
  z-index: 9999;
  position: fixed;
  padding: 4px;
  width: 400px;
  box-sizing: border-box;
  color: #fff;
}

.Toastify .Toastify__toast-container .toast {
  display: flex;
  width: 100%;
  max-width: 400px;
  align-items: center;
  background-color: var(--background-primary);
  padding: 1rem;
  color: var(--text-primary-main);
  border-left: 4px solid transparent;
  grid-gap: 8px;
}

.Toastify .Toastify__toast-container .toast .toast-icon {
  border-radius: 0.5rem;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.Toastify .Toastify__toast-container .toast .toast-close-btn {
  color: var(--text-primary-main);
  padding: 0.375rem;
  background-color: var(--accent-background-secondary);
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  border: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  cursor: pointer;
}

.Toastify .Toastify__toast-container .toast .toast-close-btn:hover {
  background-color: var(--accent-background-secondary);
}

.Toastify .Toastify__toast-container .toast.toast-success {
  border-color: var(--success-color);
  box-shadow: var(--primary-shadow);
}

.Toastify .Toastify__toast-container .toast.toast-success .toast-icon {
  background-color: var(--success-color-light);
  color: var(--success-color);
}

.Toastify .Toastify__toast-container .toast.toast-error {
  border-color: var(--error-color);
  box-shadow: var(--primary-shadow);
}

.Toastify .Toastify__toast-container .toast.toast-error .toast-icon {
  background-color: var(--error-color-light);
  color: var(--error-color);
}

.Toastify .Toastify__toast-container .toast.toast-warning {
  border-color: var(--warning-color);
  box-shadow: var(--primary-shadow);
}

.Toastify .Toastify__toast-container .toast.toast-warning .toast-icon {
  background-color: var(--warning-color-light);
  color: var(--warning-color);
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-right {
  top: 1em;
  right: 1em;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-right .toast {
  margin-bottom: 1rem;
  animation: slideInRight 0.3s ease-in;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-right .toast.remove-animation {
  animation: slideOutRight 0.3s ease-out;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-left {
  top: 1em;
  left: 1em;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-left .toast {
  margin-bottom: 1rem;
  animation: slideInLeft 0.3s ease-in;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-left .toast.remove-animation {
  animation: slideOutLeft 0.3s ease-out;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-center {
  top: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-center .toast {
  margin-bottom: 1rem;
  animation: slideInDown 0.3s ease-in;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--top-center .toast.remove-animation {
  animation: slideOutUp 0.3s ease-out;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-left {
  bottom: 1em;
  left: 1em;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-left .toast {
  margin-top: 1rem;
  animation: slideInLeft 0.3s ease-in;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-left .toast.remove-animation {
  animation: slideOutLeft 0.3s ease-out;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-right {
  bottom: 1em;
  right: 1em;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-right .toast {
  margin-top: 1rem;
  animation: slideInRight 0.3s ease-in;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-right .toast.remove-animation {
  animation: slideOutRight 0.3s ease-out;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-center {
  bottom: 1em;
  left: 50%;
  transform: translateX(-50%);
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-center .toast {
  margin-top: 1rem;
  animation: slideInUp 0.3s ease-in;
}

.Toastify .Toastify__toast-container.Toastify__toast-container--bottom-center .toast.remove-animation {
  animation: slideOutDown 0.3s ease-out;
}