﻿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;
}
/* ============================= */
/* 🔘 ACTION BUTTON STYLES */
/* ============================= */

.btn-action {
    background-color: #ffffff;
    color: #0d6efd;
    border: 1px solid #0d6efd;
    transition: all 0.2s ease-in-out;
}

.btn-gecmis:hover {
    background-color: #0d6efd;
    color: #ffffff;
    border-color: #0d6efd;
}

.btn-yardim:hover {
    background-color: #198754;
    color: #ffffff;
    border-color: #198754;
}

.btn-ozel:hover {
    background-color: #fd7e14;
    color: #ffffff;
    border-color: #fd7e14;
}
/* TEMİZLE – ARA & SİL FORMATINDA */
.btn-temizle {
    background-color: #198754; /* Bootstrap green */
    color: #ffffff;
    border: 1px solid #198754;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

    /* Hover'da BOZULMASIN */
    .btn-temizle:hover,
    .btn-temizle:focus {
        background-color: #198754;
        color: #ffffff;
        border-color: #198754;
    }
/* 📱 Mobilde sorgu alanını biraz aşağı al */
@media (max-width: 576px) {
    .sorgu-blok {
        margin-top: 20px;
    }
}
/* 🔍 SORGULAMA INPUT - FOCUS GÖRÜNÜMÜ SABİT */
.sorgu-blok input.form-control,
form input.form-control-lg {
    border-color: #0d6efd; /* bootstrap primary */
    box-shadow: 0 0 0 0.2rem rgba(13,110,253,.25);
}
    form input.form-control-lg:hover {
        border-color: #0d6efd;
    }
/* =========================
   📊 BİLGİ KARTLARI – PROFESYONEL STİL
   ========================= */

.bilgi-kart {
    background: #ffffff;
    border: 1px solid #e0e0e0; /* net ama yumuşak çerçeve */
    border-radius: 12px;
    min-height: 120px; /* 🔥 hepsini eşitler */
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06), 0 8px 20px rgba(0, 0, 0, 0.04); /* profesyonel gölge */

    transition: all 0.2s ease-in-out;
}

    /* hover çok hafif olsun */
    .bilgi-kart:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08), 0 12px 26px rgba(0, 0, 0, 0.06);
    }

    /* sayı */
    .bilgi-kart .kart-sayi {
        font-size: 22px;
        font-weight: 700;
        margin-top: 6px;
    }

    /* başlık */
    .bilgi-kart .kart-baslik {
        font-size: 13px;
        color: #6c757d;
        margin-top: 4px;
        text-align: center;
    }

    /* mahalle yazısı uzun olursa da dengeli dursun */
    .bilgi-kart .kart-metin {
        font-weight: 600;
        font-size: 15px;
        text-align: center;
        word-break: break-word;
    }
/* 📊 Bilgi kartları eşit boy + profesyonel görünüm */
.card {
    height: 100%;
    border: 1px solid #e0e0e0 !important;
    border-radius: 10px;
    transition: all 0.2s ease-in-out;
}

    /* Hafif hover efekti (abartı yok) */
    .card:hover {
        box-shadow: 0 6px 18px rgba(0,0,0,0.08);
        transform: translateY(-2px);
    }
@media (min-width: 992px) {
    .container {
        max-width: 100% !important;
    }
}
/* LOGIN GENİŞLİK KONTROLÜ */
.login-wrapper {
    width: 100%;
}

/* MOBİL (aynı kalsın) */
.login-card {
    width: 100%;
    max-width: 420px;
}

/* MASAÜSTÜ – ESKİ GENİŞ GÖRÜNÜM */
@media (min-width: 992px) {
    .login-card {
        max-width: 620px;
    }
}