/* --- GENEL AYARLAR --- */
html, body {
    height: 100%;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    /* Derin gece mavisi arka plan */
    background: linear-gradient(135deg, #141e30, #243b55);
    color: #ffffff !important;
    min-height: 100vh;
}

/* Linkler */
a {
    text-decoration: none;
    color: #4facfe;
    transition: 0.3s;
}

    a:hover {
        color: #00f2fe;
        text-shadow: 0 0 10px #00f2fe;
    }

/* --- NAVBAR (ÜST MENÜ) --- */
.navbar {
    background: rgba(0, 0, 0, 0.6) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.navbar-brand, .nav-link {
    color: #fff !important;
    font-weight: 600;
}

    .nav-link:hover {
        color: #00f2fe !important;
        transform: scale(1.1); /* Menü linkleri de büyüsün */
    }

/* --- TABLO TASARIMI (Listeleme Ekranı) --- */
.table {
    color: #ffffff !important;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 15px;
    margin-top: 20px;
    /* Tablonun sınırları dışına taşan efektlerin görünmesi için: */
    border-collapse: separate;
    border-spacing: 0 5px; /* Satırlar arası azıcık boşluk olsun */
}

    .table thead th {
        background: linear-gradient(90deg, #1cb5e0, #000851);
        color: white !important;
        border: none;
        padding: 15px;
    }

    .table tbody tr {
        transition: all 0.3s ease; /* Yumuşak geçiş */
        background-color: rgba(255,255,255,0.02); /* Çok hafif belli olsun */
    }

    .table tbody td {
        color: #ffffff !important;
        vertical-align: middle;
        border: none; /* Çizgileri kaldır, daha modern dursun */
    }

/* --- İŞTE BURASI: TABLO SATIRI BÜYÜME EFEKTİ --- */
.table-hover tbody tr:hover {
    transform: scale(1.02); /* %2 Büyü */
    background-color: rgba(255, 255, 255, 0.15); /* Rengi açılsın */
    box-shadow: 0 0 15px rgba(0, 242, 254, 0.3); /* Arkasına neon ışık at */
    z-index: 10;
    position: relative; /* Üste çıkması için gerekli */
}

    .table-hover tbody tr:hover td {
        color: #00f2fe !important; /* Yazılar neon mavi olsun */
    }

/* --- RESİMLER (Büyüme Efekti Geri Döndü) --- */
img {
    border-radius: 8px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Yaylanarak büyüsün */
    background-color: #fff
    /* --- FOOTER DÜZELTMESİ --- */
    footer, .border-top

{
    border: none !important; /* Kenarlığı zorla kaldır */
}

.footer {
    background-color: transparent; /* Arka plan şeffaf olsun */
    color: rgba(255,255,255,0.5); /* Yazı silik beyaz olsun */

}
/* Footer'ı en alta sabitleme ayarı */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* Sayfa yüksekliği en az ekran kadar olsun */
}

main {
    flex: 1; /* İçerik alanı kalan tüm boşluğu kaplasın */
}

footer {
    flex-shrink: 0; /* Footer küçülmesin */
}
