/* Change default toast background color */

.toast {
  background-color: #1a1a1a; /* Default background color for all toasts */
}

/* Success Toast */
.toast-success {
  background-color: #339e36; /* Green background for success */
}

/* Error Toast */
.toast-error {
  background-color: #F44336; /* Red background for error */
}

/* Info Toast */
.toast-info {
  background-color: #2196F3; /* Blue background for info */
}

/* Warning Toast */
.toast-warning {
  background-color: #FF9800; /* Orange background for warning */
}

/* Close Button Color */
.toast-close-button {
  color: #FFFFFF; /* Close button color */
}

/* Adjust Toast Title Color */
.toast-title {
  color: #FFFFFF; /* Title text color */
}

/* Adjust Toast Message Color */
.toast-message {
  color: #FFFFFF; /* Message text color */
}

/* Toastr Container */
#toast-container {
  background-color: rgba(0, 0, 0, 0); /* Semi-transparent background for the container */
}
