#toast-container {
  position: fixed;
  top: 10px;
  left: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  max-width: 400px;
  opacity: 0;
  transform: translateX(-20px);
  animation: fadeInOut 3s ease forwards;
}

.toast.success {
  background-color: #86ef81;
  border-radius: 4px;
  padding: 8px 10px;
  box-shadow: 0px 2px 4px 2px rgb(80 80 80 / 30%);
  -webkit-box-shadow: 0px 2px 4px 2px rgb(80 80 80 / 30%);
  -moz-box-shadow: 0px 2px 4px 2px rgb(80 80 80 / 30%);
  width: fit-content;

  font-size: 16px;
  font-family: 'poppins-light';
  font-weight: 100;
  text-align: center;
  color: #2e7524;
}

.toast.error {
  background-color: #d80000;
  border-radius: 4px;
  padding: 8px 10px;
  box-shadow: 0px 2px 4px 2px rgb(80 80 80 / 30%);
  -webkit-box-shadow: 0px 2px 4px 2px rgb(80 80 80 / 30%);
  -moz-box-shadow: 0px 2px 4px 2px rgb(80 80 80 / 30%);
  width: fit-content;

  font-size: 16px;
  font-family: 'poppins-light';
  font-weight: 100;
  text-align: center;
  color: white;
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}