#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  min-width: 200px;
  max-width: calc(100vw - 40px);
  margin-bottom: 10px;
  padding: 15px 20px;
  border-radius: 4px;
  color: white;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: slideIn 0.3s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
@media screen and (min-width: 576px) {
  .toast {
    min-width: 300px;
  }
}

.toast-success {
  background-color: #43D1A6;
}

.toast-error {
  background-color: #FF5D5D;
}

.toast-warning {
  background-color: #ed8936;
}

.toast-info {
  background-color: #4299e1;
}

.toast-close {
  background: none;
  border: none;
  color: white;
  font-size: 16px;
  margin-left: 10px;
  padding: 0 5px;
}

.toast-content {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.toast-icon {
  margin-right: 10px;
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(100%);
    opacity: 0;
  }
}/*# sourceMappingURL=toast.css.map */