body {
    font-family: Arial, sans-serif;
    background-color: #2E2E2E; /* Sayfa arka planını koyu gri yaptık */
    color: #E0E0E0; /* Metin rengini açık gri yaptık */
    margin: 0;
    padding: 0;
    padding-bottom: 60px; /* Alt menü yüksekliği kadar boşluk bırakılır */
}

/* Orta Logo ve Menü Düzenlemesi */
.nav-menu {
    display: flex;
    justify-content: center; /* Öğeleri tam merkezde hizalar */
    align-items: center;
    background-color: rgba(50, 50, 50, 0.9); /* Menüyü koyu griye çevirdik */
    border-top: 1px solid #444;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100vw; /* Görüntü alanını aşmasın */
    z-index: 1000;
    height: 60px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3); /* Gölgeyi biraz daha belirginleştirdik */
}

/* Menü Logo ve Logoo Ayarları */
.menu-logo, .menu-logoo {
    border-radius: 50%;
    object-fit: cover;
}

.menu-logo {
    width: 35px;
    height: 35px;
    transform: translateY(-2%);
}

.menu-logoo {
    width: 65px;
    height: 65px;
    position: absolute;
    top: 50%;
    transform: translateY(-90%);
}
.nav-menu img {
    margin-bottom: -5px;
}

/* Menü Link ve Simge Ayarları */
.nav-menu a {
    text-decoration: none;
    color: #E0E0E0; /* Menü yazısını açık gri yaptık */
    font-size: 0.9rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.nav-menu a.active {
    color: #ffdd57; /* Aktif menü rengini koruduk */
}

.nav-menu a i {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-menu {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        height: 50px;
        padding: 0 10px;
    }

    .menu-logo {
        width: 35px;
        height: 35px;
    }
    .menu-logoo {
        width: 65px;
        height: 65px;
    }
}
