/* Sidebar Alanları */
.sidenav {
    /* Menü stil ve boyutları */
    position: fixed;
    width: 250px;
    top: 0;
    left: -250px;
    height: 100%;
    z-index: 1050;
    transition: all 0.3s;
    overflow-y: auto;
}

.sidenav.active {
    left: 0;
}

.sdprofile {
    /* Profil alanı ve resim düzeni */
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #2c3e50;
    color: #fff;
}

.sdp-left img {
    /* Profil resmi stil ve boyutları */
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.sdp-right {
    /* Profil metinleri */
    margin-left: 15px;
}

/* Topbar Alanları */
.navbar {
    /* Sabit üst çubuk */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.bg-header {
    /* Başlık çubuğu arka planı */
    background-color: #34495e;
    color: #fff;
}

.logo a {
    /* Logo metni */
    font-size: 16px;
    font-weight: 700;
}

/* Footer Alanları */
.footer {
    /* Alt bilgi çubuğu */
    padding: 20px;
    text-align: center;
    background-color: #ecf0f1;
}