﻿body {
    background-color: whitesmoke;
    font-family: Arial;
    color: #333; /* Opak ve okunabilir bir renk */
    padding-top: 90px; /* Navbar yüksekliğine göre ayarlandı */

}

h1 {
    /* Başlıklar için stil buraya eklenecek */
}


.ust-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #e0e0e0;
    color: #555;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: padding 0.3s, box-shadow 0.3s;
    padding: 0;
}
.logo {
    height: 60px;
    margin-right: 40px;
    border-radius: 4px;
}
.navbar {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    align-items: center;
}
    .navbar li a,
    .dropdown-menu li a {
        color: #555;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s, background 0.2s;
    }

        .navbar li a:hover,
        .dropdown-menu li a:hover {
            color: #fff;
            background: #ff9800;
        }.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;

    background: #e0e0e0;
    min-width: 160px;
    z-index: 1000;
    list-style: none;
    padding: 0;
    margin: 0;

}

    .dropdown-menu li a {
        color: #ffd700);
        padding: 10px 18px;
        display: block;
        text-decoration: none;
    }

        .dropdown-menu li a:hover {
            background: #ff9800;
            
        }
.navbar > .dropdown:hover > .dropdown-menu {
    display: block;
}
.navbar > .dropdown {
    position: relative;
}
.haber-orta-alan {
    display: flex;
    gap: 32px;
    margin: 0 auto 40px auto; /* üstte hiç boşluk yok */
    max-width: 1200px;
    padding: 0 16px;
    margin-top: 0 !important;
    margin-bottom: 40px;
}

.haberler-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px;
    flex: 1 1 0;
}

.haber-kart {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    padding-bottom: 0;
}

    .haber-kart:hover {
        transform: translateY(-5px) scale(1.03);
        box-shadow: 0 8px 24px rgba(0,0,0,0.13);
    }

.haber-kart-resim {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}

.haber-kart-icerik {
    padding: 20px 16px 16px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.haber-kart-baslik {
    font-size: 1.3em;
    margin: 0 0 10px 0;
}
.haber-kart-ozet {
    font-size: 1em;
    color: #444;
    margin-bottom: 5px;
    flex: 1;
}

.haber-kart-devam {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 18px;
    background: #ff9800;
    color: #555;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

    .haber-kart-devam:hover {
        background: #444;
    }


.yan-menu-kart {
    width: 266px;
    min-width: 220px;
    max-width: 340px;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 16px 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

    .yan-menu-kart h3 {
        margin-top: 0;
        font-size: 1.1em;
        color: #333;
        margin-bottom: 16px;
        font-weight: 700;
    }

    .yan-menu-kart ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .yan-menu-kart li {
        margin-bottom: 12px;
    }

    .yan-menu-kart a {
        color: #1976d2;
        text-decoration: none;
        font-weight: 500;
        transition: color 0.2s;
    }

        .yan-menu-kart a:hover {
            color: #0d47a1;
            text-decoration: underline;
        }

.yan-menu-ayrac {
    border: none;
    border-top: 2px solid #e0e0e0;
    margin: 20px 0;
}

/* Responsive */
@media (max-width: 900px) {
    .haber-orta-alan {
        flex-direction: column;
    }

    .haber-orta-alan {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        gap: 24px;
        margin-top: 0 !important;
    margin-bottom: 40px;
    }

    .yan-menu-kart {
        width: 100%;
        max-width: 100%;
        margin-top: 24px;
    }
}
.genis-reklam-blok {
    width: 100%;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    min-height: 180px;
}

    .genis-reklam-blok img {
        max-width: 100%;
        height: auto;
        border-radius: 8px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    }
.site-footer {
    background: #e0e0e0;
    color: #555;
    padding: 40px 0 10px 0;
    margin-top: 40px;
}
.footer-icerik {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

    .footer-icerik > div {
        min-width: 200px;
        margin-bottom: 20px;
    }

.footer-alt {
    text-align: center;
    margin-top: 20px;
    font-size: 0.95em;
    color: #bbb;
}
/* Footer ve genel link hover efekti */
.footer-icerik a,
.footer-alt a,
.yan-menu-kart a,
.haber-kart-devam {
    transition: color 0.2s;
}

    .footer-icerik a:hover,
    .footer-alt a:hover,
    .yan-menu-kart a:hover,
    .haber-kart-devam:hover {
        color: #e65100;  
        text-decoration: underline;
    }
.ust-bar {
    transition: padding 0.3s, box-shadow 0.3s;
}

    .ust-bar.scrolled {
        padding: 30px 30px; /* Yüksekliği artır */
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        background: #afdb2f5a; /* renk */
        color: #555; /* yazınınz rengi değişiyor */
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        transition: background 0.3s, color
    }

    .ust-bar.scrolled {
        padding: 30px 30px; /* yükseklik arttır*/
        box-shadow: 0 4px 16px rgba(0,0,0,0.10);
        background: #fff; /* kaydırınca arka plan görünümü */
    }
body {
    padding-top: 70px; /* navı yüksekliğe göre ayar */
}
.navbar-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    width: 100%;
}
.footer-sayac {
    text-align: center;
    color: #888;
    font-size: 1em;
    margin-top: 10px;
}




.tarih-zaman-blok {
    background: linear-gradient(90deg, #e65100 0%, #ffd700 100%);
    color: #fff;
    border-radius: 10px;
    padding: 12px 10px;
    margin: 16px 0 16px 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    font-size: 1.1em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(25, 118, 210, 0.10);
    letter-spacing: 1px;
    border: 2px solid #fff;
    transition: box-shadow 0.3s;
    overflow: hidden;
}


.haberler-sayfa .haber-kart {
    width: 100%; /* veya istediğiniz genişlik */
    max-width: 880px; /* örnek: kart genişliği */
    /**min-height: 120px; /* örnek: kart yüksekliği */
    margin: 0 auto; /* kartlar arasında boşluk */
    text-align: center;
    /* Diğer özel stiller */
}

.haberler-sayfa .haberler-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    justify-items: center;
}

.navbar-link-disabled {
    color: #bbb !important;
    cursor: not-allowed;
    font-weight: 500;
    padding: 6px 12px;
    text-decoration: none;
    pointer-events: none;
}

.kucuk-alinti {
    display: block;
    font-size: 0.85em;
    color: #888;
    font-style: italic;
    margin-top: 12px;
    letter-spacing: 0.5px;
    text-align: right;
}

.haberler-sayfa .haber-kart:last-child {
    margin-bottom: 0 !important;
}

.haberler-sayfa .haberler-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
}

.merkez-sayfa .haberler-grid {
    gap: 1 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.merkez-sayfa .haber-kart {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
     
}

    .merkez-sayfa .haber-kart:last-child {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

.merkez-sayfa .haber-kart-icerik {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Kart ana yapısı */
.haber-kart {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    margin: 20px 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: box-shadow 0.2s;
    padding: 0;

}

    .haber-kart:hover {
        box-shadow: 0 4px 24px rgba(0,0,0,0.16);
    }

.haber-kart-resim {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.haber-kart-icerik {
    padding: 24px 20px 16px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.haber-kart-baslik {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #222;
    letter-spacing: 0.5px;
}

.haber-kart-ozet {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin: 0 0 8px 0;
    text-align: justify;
    text-indent: 24px;
}

.haber-kart-footer {
    margin-top: 10px;
    display: flex;
    justify-content: flex-end;
}

.haber-kart-devam {
    background: #007bff;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.2s;
}

    .haber-kart-devam:hover {
        background: #0056b3;
    }
.haber-kart-resim {
    width: 80%; /* Kartın tamamını kaplar */
    max-width: 320px; /* Maksimum genişlik */
    height: 222px; /* Sabit yükseklik */
    object-fit: cover; /* Orantılı kırpma */
    display: block;
    margin: 0 auto 12px auto; /* Ortala ve altta boşluk bırak */
    border-radius: 8px; /* Köşeleri yumuşatmak için (isteğe bağlı) */
}

.haber-kart-yatay {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 24px;
    text-align: left;
    min-height: 120px;
}

    .haber-kart-yatay .haber-kart-resim {
        width: 180px;
        max-width: 180px;
        min-width: 120px;
        height: 120px;
        object-fit: cover;
        margin: 0;
        border-radius: 8px;
        box-shadow: 0 1px 6px rgba(0,0,0,0.08);
    }

    .haber-kart-yatay .haber-kart-icerik {
        padding: 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Butonu alta sabitler */
        min-height: 120px;
        height: auto; /* Yükseklik kısıtlamasını kaldır */
    }

    .haber-kart-yatay .haber-kart-devam {
        align-self: flex-start; /* Sola hizalar */
        margin-top: 16px;
    }

/* Mobil uyum: 700px ve altı ekranlarda dikey hizala */
@media (max-width: 700px) {
    .haber-kart-yatay {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: left;
    }

        .haber-kart-yatay .haber-kart-resim {
            width: 100%;
            max-width: 100%;
            height: 180px;
            margin: 0 auto;
        }

        .haber-kart-yatay .haber-kart-icerik {
            padding: 12px 0 0 0;
        }
}
.haber-kart-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

    .haber-kart-link:hover .haber-kart {
        box-shadow: 0 8px 24px rgba(0,0,0,0.13);
        transform: translateY(-5px) scale(1.03);
    }

.modal-haber {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.45);
    justify-content: center;
    align-items: center;
}

.modal-haber-icerik {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90vw;
    max-width: 800px;
    height: 80vh;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

    .modal-haber-icerik iframe {
        width: 100%;
        height: 100%;
        border: none;
        flex: 1;
    }

.modal-haber-kapat {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #ff9800;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1.3em;
    cursor: pointer;
    z-index: 2;
    transition: background 0.2s;
}

    .modal-haber-kapat:hover {
        background: #d84315;
    }

body.modal-acik {
    overflow: hidden !important;
    position: relative;
    height: 100vh;
}

.haber-kart-devam {
    display: inline-block;
    min-width: 140px; /* Genişlik ihtiyacınıza göre ayarlayın */
    height: 40px; /* Yükseklik ihtiyacınıza göre ayarlayın */
    line-height: 40px; /* Dikey ortalama için */
    text-align: center;
    background: #ff9800;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 10px;
    font-size: 1em;
    box-sizing: border-box;
    padding: 0 16px; /* Yatayda biraz boşluk bırakır */
    cursor: pointer;
}

    .haber-kart-devam:hover {
        background: #d84315;
    }

.merkez-sayfa .haber-kart-resim {
    width: 100% !important;
    max-width: 100% !important;
    height: 222px;
    object-fit: cover;
    display: block;
    margin: 0 auto 12px auto;
    border-radius: 8px;
}
.haber-kart-icerik, .haber-kart-ozet {
    padding-right: 24px !important;
    padding-left: 1px !important;
}

.haber-kart-yatay .haber-kart-resim {
    margin-left: 16px !important;
}

.modal-haber-icerik {
    max-width: 880px !important; /* Kart genişliğiyle aynı */
    width: 100%;
    min-width: 320px;
    height: auto;
    min-height: 580px; /* Kartınızın ortalama yüksekliği kadar */
    max-height: 400px; /* Gerekirse artırıp azaltabilirsiniz */
    box-sizing: border-box;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.merkez-sayfa .haber-kart-baslik,
.merkez-sayfa .haber-kart-ozet {
    text-align: left !important;
    padding-left: 20px !important;
}
.takip-harita-img {
    display: block;
    margin: 32px auto;
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 1.5px 6px rgba(0,0,0,0.10);
    background: #fff;
    padding: 8px;
}

.konusma-aciklama {
    font-style: italic;
    color: #888;
    background: #f7f7f7;
    border-left: 4px solid #bdbdbd;
    margin: 0 0 24px 0; /* Üstte boşluk yok, altta var */
    padding: 12px 20px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    font-size: 1.05em;
}
.sayfa-numaralari {
    text-align: center;
    margin: 24px 0 0 0;
}

    .sayfa-numaralari button {
        background: #f7f7f7;
        border: 1px solid #bdbdbd;
        color: #333;
        margin: 0 4px;
        padding: 6px 16px;
        border-radius: 4px;
        cursor: pointer;
        font-weight: bold;
        transition: background 0.2s;
    }

        .sayfa-numaralari button:hover {
            background: #e0e0e0;
        }

.adsense-blok {
    margin: 24px auto;
    max-width: 728px;
    min-height: 90px;
    /* text-align:center; // Bunu kaldır */
}
.adsense-banner-ust,
.adsense-icerik-arasi,
.adsense-sidebar,
.adsense-footer-ustu {
    margin: 24px auto;
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 8px 0;
}
.adsense-sidebar {
    margin: 32px 0;
}
@media (max-width: 900px) {
    .adsense-sidebar {
        min-width: 100% !important;
        min-height: 120px !important;
    }
}
.okunma-bilgi-mesaj {
    background: #f7f7f7;
    border-left: 4px solid #4a90e2;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 14px 24px;
    margin: 32px 0 0 0;
    font-size: 1.08em;
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: center; /* Ortalamak için eklendi */
    text-align: center; /* Çok satırlı içerik için */
}
    .okunma-bilgi-mesaj i {
        margin-right: 6px;
        color: #4a90e2;
    }

.okunma-sayisi, .okunma-suresi {
    color: #2d5fa4;
    font-weight: 500;
}
.kart-genis-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.mini-mesaj-link {
    position: relative;
    display: inline-block;
    color: #2d5fa4;
    border-bottom: 1px dotted #4a90e2;
    cursor: pointer;
    outline: none;
}

.mini-mesaj-popup {
    display: none;
    position: absolute;
    left: 0;
    top: 120%;
    z-index: 9999;
    background: #f7f7f7;
    border: 1.5px solid #b3c6e6;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.13);
    padding: 14px 18px;
    min-width: 220px;
    max-width: 320px;
    font-size: 1em;
    color: #222;
    font-family: monospace, 'Courier New', Courier;
    white-space: pre-line;
}

.mini-mesaj-link:hover .mini-mesaj-popup,
.mini-mesaj-link:focus .mini-mesaj-popup {
    display: block;
}}

.minik-tablo {
    width: 170px;
    font-size: 0.92em;
    margin: 8px 0;
    border-collapse: collapse;
    box-shadow: 0 2px 12px rgba(0,0,0,0.13);
    border-radius: 8px;
    overflow: hidden;
}

    .minik-tablo td {
        padding: 3px 7px;
        border: 1.5px solid #b0b0b0;
        font-size: 0.97em;
    }

        .minik-tablo td:first-child {
            font-weight: bold;
            color: #4a90e2;
            width: 22px;
            text-align: center;
        }

/* Koyu gri tablo */
.gri-tablo {
    background: #e0e0e0;
}

    .gri-tablo td {
        background: #e0e0e0;
    }

/* Açık gri tablo */
.acik-gri-tablo {
    background: #f7f7f7;
}

    .acik-gri-tablo td {
        background: #f7f7f7;
    }

.kucuk-banner {
    width: 220px;
    height: 60px;
    margin: 16px auto 24px auto;
    background: #f7f7f7;
    border: 1.5px solid #b3c6e6;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05em;
    color: #2d5fa4;
    font-weight: bold;
}

    .kucuk-banner img {
        max-width: 200px;
        max-height: 48px;
        display: block;
    }
.sayfa-ayraci {
    width: 100%;
    height: 4px;
    margin: 2px 0;
    border-radius: 2px;
    background: linear-gradient(90deg, #b3c6e6 0%, #e0e7ef 100%);
    box-shadow: 0 2px 12px rgba(44, 62, 80, 0.13);
    opacity: 0.95;
}
.yanan-kirmizi {
    color: red;
    animation: yanip-son 0.8s linear infinite;
    font-weight: bold;
}

@keyframes yanip-son {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.2;
    }

    100% {
        opacity: 1;
    }
}
.belge-indir-alani {
    background: #f7faff;
    border: 1.5px solid #b3c6e6;
    border-radius: 10px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    padding: 24px 28px;
    margin: 32px auto 24px auto; /* Ortalamak için auto */
    text-align: center;
    max-width: 480px; /* Genişliği sınırlamak için */
    width: 100%;
    display: block;
}

    .belge-indir-alani h3 {
        margin-bottom: 12px;
        color: #2a4d7a;
        font-size: 1.25em;
    }

.belge-indir-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .belge-indir-listesi li {
        margin: 10px 0;
    }

    .belge-indir-listesi a {
        color: #1a3d6d;
        text-decoration: none;
        font-weight: 500;
        font-size: 1.07em;
        transition: color 0.2s;
    }

        .belge-indir-listesi a:hover {
            color: #0d6efd;
            text-decoration: underline;
        }

    .belge-indir-listesi i {
        margin-right: 7px;
        color: #2a4d7a;
    }
.digerkalanlar-grid {
    display: flex !important;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.digerkalanlar-ust {
    display: flex;
    gap: 24px;
    width: 100%;
}

    .digerkalanlar-ust .haber-kart {
        flex: 1 1 0;
    }

.digerkalanlar-alt {
    width: 100%;
    /* Uzun kart için isteğe bağlı ekstra stil */
}

@media (max-width: 900px) {
    .digerkalanlar-ust {
        flex-direction: column;
        gap: 24px;
    }
}
.organik-bilgi-banner-tablo {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    border-radius: 24px;
    box-shadow: 0 6px 32px rgba(25,90,157,0.18), 0 1.5px 6px rgba(0,0,0,0.10);
    min-width: 320px;
    max-width: 90vw;
    opacity: 0.98;
}

    .organik-bilgi-banner-tablo table {
        background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
        border-radius: 24px;
        border: 3px solid #fff;
        width: 100%;
        padding: 0;
    }

    .organik-bilgi-banner-tablo td {
        color: #fff;
        padding: 18px 38px 18px 24px;
        font-size: 1.13em;
        font-weight: 500;
        text-align: center;
        letter-spacing: 0.5px;
        border-radius: 24px;
        position: relative;
    }

    .organik-bilgi-banner-tablo strong {
        color: #ffd700;
        margin-left: 8px;
        font-weight: 700;
    }

.organik-banner-kapat {
    position: absolute;
    top: 12px;
    right: 18px;
    background: #fff;
    color: #185a9d;
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(25,90,157,0.10);
    transition: background 0.2s, color 0.2s;
}

    .organik-banner-kapat:hover {
        background: #ffd700;
        color: #185a9d;
    }

.organik-banner-goster-btn {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: #185a9d;
    color: #fff;
    border: none;
    border-radius: 18px;
    padding: 8px 22px;
    font-size: 1em;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(25,90,157,0.10);
    cursor: pointer;
    opacity: 0.95;
}

@media (max-width: 600px) {
    .organik-bilgi-banner-tablo td {
        font-size: 0.98em;
        padding: 12px 10px 12px 10px;
    }

    .organik-bilgi-banner-tablo {
        min-width: 0;
    }
}
.merkez-ozel-img-blok {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 24px 0;
}
.ufe-tufe-tablo-blok {
    max-width: 600px;
    margin: 32px auto;
    background: #f7faff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(25,90,157,0.07);
    padding: 24px 18px;
}

    .ufe-tufe-tablo-blok h3 {
        text-align: center;
        color: #185a9d;
        margin-bottom: 18px;
    }

.ufe-tufe-tablo {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-size: 1em;
}

    .ufe-tufe-tablo th, .ufe-tufe-tablo td {
        border: 1px solid #b3c6e6;
        padding: 8px 10px;
        text-align: center;
    }

    .ufe-tufe-tablo th {
        background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
        color: #fff;
        font-weight: 600;
    }

    .ufe-tufe-tablo tr:nth-child(even) td {
        background: #f0f6fa;
    }

    .ufe-tufe-tablo tr:hover td {
        background: #e3f2fd;
    }
.kart-genis-tablo {
    max-width: 880px; /* .haber-kart ile aynı genişlik */
    width: 100%;
    margin: 0 auto 18px auto;
    padding: 0;
    box-sizing: border-box;
}

    .kart-genis-tablo .ufe-tufe-tablo {
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
        border-radius: 10px;
    }
.hizli-kopru-blok {
    text-align: center;
    margin: 5px 0 6px 0;
}

    .hizli-kopru-blok a {
        color: #185a9d;
        background: #f7faff;
        border: 1px solid #b3c6e6;
        border-radius: 4px;
        padding: 2px 9px;
        margin: 0 1px;
        text-decoration: none;
        font-weight: 111;
        transition: background 0.2s, color 0.2s;
        display: inline-block;
    }

        .hizli-kopru-blok a:hover {
            background: #185a9d;
            color: #fff;
        }
        .hizli-kopru-kare-blok {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin: 18px 0 28px 0;
}
.hizli-kopru-kare-blok a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(25,90,157,0.10);
    font-weight: 600;
    font-size: 1em;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, transform 0.15s;
    border: 2px solid #fff;
    padding: 10px;
}
.hizli-kopru-kare-blok a:hover {
    background: linear-gradient(135deg, #185a9d 0%, #43cea2 100%);
    color: #ffd700;
    transform: scale(1.07);
    box-shadow: 0 4px 18px rgba(25,90,157,0.18);
}
@media (max-width: 600px) {
    .hizli-kopru-kare-blok {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .hizli-kopru-kare-blok a {
        width: 90vw;
        max-width: 320px;
        height: 54px;
        font-size: 0.98em;
    }
}
.uyap-vatandas-img-blok {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 18px 0;
}

    .uyap-vatandas-img-blok img {
        max-width: 100%;
        height: auto;
    }
.download-table-blok {
    max-width: 600px;
    margin: 36px auto 32px auto;
    background: #f7faff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(25,90,157,0.07);
    padding: 24px 18px;
}

    .download-table-blok h3 {
        text-align: center;
        color: #185a9d;
        margin-bottom: 18px;
    }

.download-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    font-size: 1em;
}

    .download-table th, .download-table td {
        border: 1px solid #b3c6e6;
        padding: 10px 12px;
        text-align: center;
    }

    .download-table th {
        background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
        color: #fff;
        font-weight: 600;
    }

    .download-table tr:nth-child(even) td {
        background: #f0f6fa;
    }

.download-btn {
    display: inline-block;
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 7px 18px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 8px rgba(25,90,157,0.10);
}

    .download-btn:hover {
        background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
        color: #ffd700;
        box-shadow: 0 4px 18px rgba(25,90,157,0.18);
    }
.img-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(20,30,50,0.85);
    justify-content: center;
    align-items: center;
    transition: background 0.2s;
}

.img-modal-content {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(25,90,157,0.18);
    border: 4px solid #fff;
    background: #fff;
    animation: modalZoomIn 0.25s;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0.5;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.img-modal-close {
    position: absolute;
    top: 32px;
    right: 48px;
    color: #fff;
    font-size: 2.8em;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    text-shadow: 0 2px 12px #000;
    transition: color 0.2s;
}

    .img-modal-close:hover {
        color: #ffd700;
    }
.iletisim-form-blok {
    max-width: 420px;
    margin: 32px auto 24px auto;
    background: #f7faff;
    border-radius: 14px;
    box-shadow: 0 4px 24px rgba(25,90,157,0.07);
    padding: 32px 24px 24px 24px;
}

    .iletisim-form-blok h2 {
        text-align: center;
        color: #185a9d;
        margin-bottom: 18px;
        font-size: 1.4em;
        font-weight: 700;
    }

.form-group {
    margin-bottom: 18px;
}

    .form-group label {
        display: block;
        margin-bottom: 6px;
        color: #185a9d;
        font-weight: 600;
    }

.form-control {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid #b3c6e6;
    border-radius: 8px;
    font-size: 1em;
    background: #fff;
    transition: border 0.2s;
}

    .form-control:focus {
        border-color: #43cea2;
        outline: none;
    }

.form-btn {
    width: 100%;
    background: linear-gradient(90deg, #43cea2 0%, #185a9d 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 12px 0;
    font-size: 1.1em;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(25,90,157,0.10);
}

    .form-btn:hover {
        background: linear-gradient(90deg, #185a9d 0%, #43cea2 100%);
        color: #ffd700;
    }

.form-error {
    color: #d32f2f;
    font-size: 0.98em;
    margin-top: 2px;
    display: block;
}

.alert {
    display: block;
    padding: 12px 18px;
    border-radius: 8px;
    margin: 18px auto;
    max-width: 420px;
    font-weight: 600;
    text-align: center;
}

.alert-success {
    background: #e6f9e6;
    color: #1b7e1b;
    border: 1.5px solid #43cea2;
}

.alert-danger {
    background: #ffeaea;
    color: #b71c1c;
    border: 1.5px solid #e57373;
}
.logo {
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

    .logo:hover {
        transform: scale(1.18);
        z-index: 2;
    }
.iletisim-form-modern {
    max-width: 340px;
    margin: 32px auto 0 auto;
    padding: 20px 18px 14px 18px;
    background: #fafbfc;
    border-radius: 12px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.07);
    border: 1px solid #e3e6ea;
}

.iletisim-baslik {
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.iletisim-form-panel .form-group {
    margin-bottom: 12px;
}

.iletisim-form-panel label {
    display: block;
    margin-bottom: 4px;
    color: #34495e;
    font-size: 0.97rem;
}

.modern-input {
    width: 100%;
    padding: 6px 10px;
    border: 1px solid #bfc9d1;
    border-radius: 6px;
    font-size: 0.97rem;
    background: #fff;
    transition: border-color 0.2s;
    box-sizing: border-box;
    min-height: 32px;
    max-height: 80px;
}

    .modern-input:focus {
        border-color: #007bff;
        outline: none;
        background: #f4f8fb;
    }

.modern-btn {
    background: #007bff;
    color: #fff;
    border: none;
    padding: 8px 0;
    border-radius: 6px;
    width: 100%;
    font-size: 1.05rem;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s;
}

    .modern-btn:hover {
        background: #0056b3;
    }

.form-sonuc {
    display: block;
    margin-top: 12px;
    text-align: center;
    font-weight: 500;
    font-size: 0.98rem;
}
.ozel-ust-blok {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2px;
    background: #f8f9fa;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    padding: 16px 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.navbar-search-blok {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8f9fa;
    padding: 10px 0 8px 0;
    border-bottom: 1.5px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    z-index: 999;
}

#navbarAramaInput {
    width: 244px;
    max-width: 60vw;
    padding: 7px 14px;
    border: 1px solid #bbb;
    border-radius: 1px;
    font-size: 1em;
    margin: 0 8px;
}

.arama-sonuc {
    margin-top: 8px;
    width: 100%;
    max-width: 244px;
    background: #fff;
    border: 0px solid #ffe58f;
    border-radius: 6px;
    font-size: 1em;
    color: #444;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    padding: 8px 12px;
}

    .arama-sonuc a {
        color: #007bff;
        text-decoration: none;
        font-weight: bold;
    }

        .arama-sonuc a:hover {
            text-decoration: underline;
        }