/* Override Bootstrap 5 primary color */
:root {
  --bs-primary: #ed1c24;
  --bs-primary-rgb: 0, 51, 102;
  --bs-link-color: #ed1c24;
  --bs-link-hover-color: #ed1c24;
  --bs-btn-hover-bg: #ed1c24;
  --bs-btn-hover-border-color: #ed1c24;
  --bs-btn-active-bg: #ed1c24;
  --bs-btn-active-border-color: #ed1c24;
  --bs-btn-disabled-bg: #ed1c24;
  --bs-btn-disabled-border-color: #ed1c24;
  --bs-nav-pills-link-active-bg: #ed1c24;
  --bs-list-group-active-bg: #ed1c24;
  --bs-list-group-active-border-color: #ed1c24;
  --bs-outline-color: #ed1c24;
  --plyr-color-main: #ed1c24;
}

/* Buttons */
.btn-primary {
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #fff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #fff !important;
}
.btn-primary:disabled,
.btn-primary.disabled {
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #fff !important;
  opacity: 0.65;
}

/* Outline Primary Button */
.btn-outline-primary {
  color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  background-color: transparent !important;
}
.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  color: #fff !important;
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
}
.btn-outline-primary:disabled,
.btn-outline-primary.disabled {
  color: #ed1c24 !important;
  background-color: transparent !important;
  border-color: #ed1c24 !important;
  opacity: 0.65;
}

/* Text and backgrounds */
.text-primary {
  color: #ed1c24 !important;
}
.bg-primary {
  background-color: #ed1c24 !important;
  color: #fff !important;
}

/* Links */
a,
.link-primary {
  color: #ed1c24;
}
a:hover,
a:focus,
.link-primary:hover,
.link-primary:focus {
  color: #ed1c24;
}

/* Nav pills and tabs */
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  background-color: #ed1c24 !important;
  color: #fff !important;
}
.nav-tabs .nav-link.active {
  border-color: #ed1c24 #ed1c24 #fff !important;
  color: #ed1c24 !important;
}

/* List group */
.list-group-item.active {
  background-color: #ed1c24 !important;
  border-color: #ed1c24 !important;
  color: #fff !important;
}

/* Progress bar */
.progress-bar.bg-primary {
  background-color: #ed1c24 !important;
}

/* Alerts */
.alert-primary {
  background-color: #e6ecf3 !important;
  border-color: #ed1c24 !important;
  color: #ed1c24 !important;
}

/* Badges */
.badge-primary,
.bg-primary {
  background-color: #ed1c24 !important;
  color: #fff !important;
}

/* Form controls focus */
.form-control:focus,
.form-select:focus {
  border-color: #ed1c24 !important;
  box-shadow: 0 0 0 0.2rem rgba(0, 51, 102, 0.25) !important;
}

/* Outline color for accessibility */
:focus {
  outline-color: #ed1c24 !important;
}

/* Custom player color */
.plyr--full-ui input[type="range"]::-webkit-slider-thumb {
  background: #ed1c24 !important;
}
