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;
}

/* --- GLOBAL RENK DÜZELTMELERİ --- */

/* 1. Mavi Butonlar (Primary) - Geri Getirildi */
.btn-primary {
    background-color: #0d6efd !important; /* Bootstrap Mavisi */
    border-color: #0d6efd !important;
    color: white !important;
}

    .btn-primary:hover {
        background-color: #0b5ed7 !important; /* Koyu Mavi Hover */
        border-color: #0a58ca !important;
    }

/* 2. Lacivert Butonlar (Özel) - Logoyla Uyumlu */
.btn-primary-custom, .bg-primary-custom {
    background-color: #002366 !important; /* Kurumsal Lacivert */
    color: white !important;
}

.text-primary-custom {
    color: #002366 !important;
}

/* 3. Turuncu Butonlar (Accent) - Dikkat Çekici */
.btn-warning, .btn-accent {
    background-color: #FF8C00 !important; /* Koyu Turuncu */
    border-color: #FF8C00 !important;
    color: white !important;
}

    .btn-warning:hover, .btn-accent:hover {
        background-color: #e07b00 !important; /* Daha Koyu Turuncu */
        border-color: #e07b00 !important;
    }

/* 4. Açık Mavi (Info) Butonlar - Geri Getirildi */
.btn-info {
    background-color: #0dcaf0 !important; /* Bootstrap Cyan */
    border-color: #0dcaf0 !important;
    color: white !important; /* Yazı beyaz olsun */
}

    .btn-info:hover {
        background-color: #31d2f2 !important;
        border-color: #25cff2 !important;
    }

/* 5. Outline Butonlar (Kenarlıklı) */
.btn-outline-primary {
    color: #0d6efd !important;
    border-color: #0d6efd !important;
}

    .btn-outline-primary:hover {
        background-color: #0d6efd !important;
        color: white !important;
    }

/* 6. Link Renkleri */
a {
    text-decoration: none;
}