/* Custom Bootstrap Theme - Override primary color */
:root {
  --bs-primary: #e94234;
  --bs-primary-rgb: 233, 66, 52;
}

/* Primary button colors */
.btn-primary {
  background-color: #e94234;
  border-color: #e94234;
}

.btn-primary:hover {
  background-color: #d13629;
  border-color: #c6331f;
}

.btn-primary:focus,
.btn-check:focus + .btn-primary {
  background-color: #d13629;
  border-color: #c6331f;
  box-shadow: 0 0 0 0.25rem rgba(233, 66, 52, 0.5);
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #c6331f;
  border-color: #ba3020;
}

/* Outline primary button */
.btn-outline-primary {
  color: #e94234;
  border-color: #e94234;
}

.btn-outline-primary:hover {
  background-color: #e94234;
  border-color: #e94234;
}

/* Links */
.link-primary {
  color: #e94234;
}

.link-primary:hover,
.link-primary:focus {
  color: #d13629;
}

/* Text and backgrounds */
.text-primary {
  color: #e94234 !important;
}

.bg-primary {
  background-color: #e94234 !important;
}

.border-primary {
  border-color: #e94234 !important;
}

/* Alerts */
.alert-primary {
  background-color: rgba(233, 66, 52, 0.1);
  border-color: rgba(233, 66, 52, 0.2);
  color: #8b2418;
}

.alert-primary .alert-link {
  color: #6c1d13;
}

/* List groups */
.list-group-item-primary {
  background-color: rgba(233, 66, 52, 0.1);
  color: #8b2418;
}

.list-group-item-primary.list-group-item-action:hover,
.list-group-item-primary.list-group-item-action:focus {
  background-color: rgba(233, 66, 52, 0.2);
  color: #8b2418;
}

/* Table */
.table-primary {
  background-color: rgba(233, 66, 52, 0.1);
  border-color: rgba(233, 66, 52, 0.2);
}
