/* Bootstrap Theme Override - Change theme color from #dc3545 to #B0E57C */

:root {
  --bs-danger: #B0E57C;
  --bs-danger-rgb: 176, 229, 124;
}

/* Override Bootstrap danger/red color with theme color */
.btn-danger,
.btn-outline-danger,
.alert-danger,
.badge-danger,
.bg-danger,
.text-danger,
.border-danger {
  --bs-danger: #B0E57C;
  --bs-danger-rgb: 176, 229, 124;
}

/* Update toast danger color */
.toast.bg-danger {
  background-color: #B0E57C !important;
}

/* Update any other Bootstrap components that use danger color */
.btn-danger {
  background-color: #B0E57C;
  border-color: #B0E57C;
}

.btn-danger:hover {
  background-color: #9dd15f;
  border-color: #9dd15f;
}

.btn-outline-danger {
  color: #B0E57C;
  border-color: #B0E57C;
}

.btn-outline-danger:hover {
  background-color: #B0E57C;
  border-color: #B0E57C;
  color: #1a1a1a;
}

