/**
 * Marka birincil buton rengi — tum site (Bootstrap / Vuexy uyumlu)
 * Yukleme sirasi: tema CSS'inden sonra.
 */
:root,
[data-bs-theme="light"] {
  --bs-primary: #0b163f;
  --bs-primary-rgb: 11, 22, 63;
}

/* Bootstrap 5.3+ degiskenleri */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: #0b163f;
  --bs-btn-border-color: #0b163f;
  --bs-btn-hover-bg: #08122e;
  --bs-btn-hover-border-color: #08122e;
  --bs-btn-active-bg: #050d24;
  --bs-btn-active-border-color: #050d24;
  --bs-btn-disabled-bg: #0b163f;
  --bs-btn-disabled-border-color: #0b163f;
  --bs-btn-focus-shadow-rgb: 11, 22, 63;
}

.btn-outline-primary {
  --bs-btn-color: #0b163f;
  --bs-btn-border-color: #0b163f;
  --bs-btn-hover-bg: #0b163f;
  --bs-btn-hover-border-color: #0b163f;
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: #08122e;
  --bs-btn-active-border-color: #08122e;
  --bs-btn-active-color: #fff;
  --bs-btn-disabled-color: #0b163f;
  --bs-btn-disabled-border-color: #0b163f;
}

/* Eski bundle / degiskensiz tema icin yedek */
.btn-primary {
  background-color: #0b163f !important;
  border-color: #0b163f !important;
  color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: #08122e !important;
  border-color: #08122e !important;
  color: #fff !important;
}

.btn-primary:active,
.btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #050d24 !important;
  border-color: #050d24 !important;
  color: #fff !important;
}

.btn-outline-primary {
  color: #0b163f !important;
  border-color: #0b163f !important;
  background-color: transparent !important;
}

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

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