/* Success (Green) */
.toast-success {
  background-color: #28a745 !important;
  color: #fff !important;
}

/* Error (Red) */
.toast-error {
  background-color: #dc3545 !important;
  color: #fff !important;
  /* width: 100% !important; */
}

/* Info (Blue) */
.toast-info {
  background-color: #0d6efd !important;
  color: #fff !important;
}

/* Warning (Yellow) */
.toast-warning {
  background-color: #ffc107 !important;
  color: #212529 !important;
}

#toast-container>.toast {
  width: auto;
  max-width: 500px;
}

.toast-message {
  margin-left: 30px;
  line-height: 1.5;
  white-space: normal;
  word-wrap: break-word;
  text-align: left;
}