.toast-danger {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #d9534f;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.toast-success {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: green;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  right: -5px;
  top: 10px;
  transition: color 0.3s;
}

.close:hover {
  color: #ff0000;
}

.toast-body {
  position: relative;
  padding: 15px;
}

.cust_mrg_bottom {
  margin-bottom: 40px;
}

.error {
  color: #dc3545;
  font-size: 14px;
}
