/* Bootstrap Primary Color Customization */
:root {
  --bs-primary: #10035b !important;
  --bs-primary-rgb: 16, 3, 91 !important;
}

/* Primary buttons */
.btn-primary {
  background-color: #10035b !important;
  border-color: #10035b !important;
  color: #fff !important;
  transition: all 0.15s ease-in-out !important;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #0d0249 !important;
  border-color: #0d0249 !important;
  color: #fff !important;
}

.btn-primary:active,
.btn-primary.active {
  background-color: #0a0240 !important;
  border-color: #0a0240 !important;
  color: #fff !important;
}

/* Outline primary buttons */
.btn-outline-primary {
  color: #10035b !important;
  border-color: #10035b !important;
  transition: all 0.15s ease-in-out !important;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #10035b !important;
  border-color: #10035b !important;
  color: #fff !important;
}

.btn-outline-primary:active,
.btn-outline-primary.active {
  background-color: #0a0240 !important;
  border-color: #0a0240 !important;
  color: #fff !important;
}

/* Other primary elements */
.bg-primary {
  background-color: #10035b !important;
}

.text-primary {
  color: #10035b !important;
}

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

a {
  color: #10035b !important;
}

a:hover {
  color: #0d0249 !important;
}

/* Nav tabs customization */
.nav-tabs .nav-link {
  color: #6c757d !important;
  border-color: transparent !important;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link:focus {
  color: #10035b !important;
  border-color: #dee2e6 #dee2e6 #dee2e6 !important;
}

.nav-tabs .nav-link.active {
  color: #10035b !important;
  background-color: #fff !important;
  border-color: #dee2e6 #dee2e6 #fff !important;
}