html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}



/* ==========================================
   TEMA: Ana Renk (Primary) - #143473
         Bilgi Rengi (Info)  - #00a1b4
   Bootstrap 5+ CSS değişkenleri ile tüm bileşenler
   tek bir yerden yönetilir.
   ========================================== */
:root {
    --bs-primary: #143473;
    --bs-primary-rgb: 20, 52, 115;
    --bs-info: #00a1b4;
    --bs-info-rgb: 0, 161, 180;
}

/* ----- Primary Utility Class'lar ----- */
.text-primary { color: #143473 !important; }
.btn-primary {
    background-color: #143473 !important;
    border-color: #143473 !important;
}
.btn-outline-primary {
    color: #143473 !important;
    border-color: #143473 !important;
}
.btn-outline-primary:hover {
    background-color: #143473 !important;
    color: #fff !important;
}
.border-primary { border-color: #143473 !important; }
.bg-primary {
    background-color: rgba(20, 52, 115, var(--bs-bg-opacity, 1)) !important;
}

/* Primary hover/koyu varyant */
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: #0F2753 !important;
    border-color: #0F2753 !important;
}
.btn-check:checked + .btn-primary {
    background-color: #0F2753 !important;
    border-color: #0F2753 !important;
}

/* ----- Info Utility Class'lar ----- */
.text-info { color: #00a1b4 !important; }
.btn-info {
    background-color: #00a1b4 !important;
    border-color: #00a1b4 !important;
    color: #fff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info:active {
    background-color: #008c9e !important;
    border-color: #008c9e !important;
}
.btn-check:checked + .btn-info {
    background-color: #008c9e !important;
    border-color: #008c9e !important;
}
.btn-outline-info {
    color: #00a1b4 !important;
    border-color: #00a1b4 !important;
}
.btn-outline-info:hover {
    background-color: #00a1b4 !important;
    color: #fff !important;
}
.border-info { border-color: #00a1b4 !important; }
.bg-info { background-color: #00a1b4 !important; }

/* ----- Link Renkleri ----- */
a {
    color: #143473;
}
a:hover {
    color: #0F2753;
}

/* ----- Admin Panel Toggle (Switch) Primary Renk ----- */
.toggle-submit:checked {
    background-color: #143473 !important;
    border-color: #143473 !important;
}
.toggle-submit:checked:focus {
    border-color: #143473 !important;
    box-shadow: 0 0 0 0.25rem rgba(20, 52, 115, 0.25) !important;
}
