.toast-container {
  position: fixed;
  bottom: 10vh;
  left: 40vw;
  width: 20vw;
  z-index: 9999;
  text-align: center;
}

.toast {
  background-color: #333;
  color: white;
  padding: 15px 25px;
  border-radius: 5px;
  margin-top: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  /* background-color: #4CAF50; */
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.toast.error {
  /* background-color: #F44336; */
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.toast.warning {
  /* background-color: #FF9800; */
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.toast.info {
  /* background-color: #2196F3; */
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

@media (max-width: 600px) {
  .toast-container {
    left: 5vw;
    width: 90vw;
    right: 5vw;
    min-width: unset;
    max-width: unset;
  }
}