/* Bootstrap Color Overrides - Change success color to orange */
:root {
  --bs-success: orangered;
  --bs-success-rgb: 255, 69, 0;
  --bs-success-bg-subtle: #ffe8dc;
  --bs-success-border-subtle: #ffcdb3;
  --bs-success-text-emphasis: #a35a26;
}

.alert-success {
  background-color: #ffe8dc !important;
  border-color: #ffcdb3 !important;
  color: #8b3a00 !important;
}

.text-success {
  color: orangered !important;
}

.bg-success {
  background-color: orangered !important;
}

.btn-success {
  background-color: orangered !important;
  border-color: orangered !important;
}

.btn-success:hover {
  background-color: #e87532 !important;
  border-color: #e87532 !important;
}
