.yonetim-menu {
    position: fixed;
    left: 0;
    top: 0;
    width: 250px;
    height: 100vh;
    background-color: #e6a700;
    color: #ecf0f1;
    padding: 20px 0;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.menu-header {
    text-align: center;
    padding: 0 20px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.menu-header h5 {
    margin: 0;
    color: #ecf0f1;
    font-size: 1.1rem;
}

.menu-items {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.menu-item {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background-color: #d69500;
    color: #fff;
}

.menu-item i {
    width: 20px;
    margin-right: 10px;
    font-size: 1.1rem;
}

.menu-item span {
    font-size: 0.95rem;
}

/* Ana içerik alanını menüye göre ayarla */
.content {
    margin-left: 250px;
    padding: 20px;
    width: calc(100% - 250px);
}

/* Topbar ve Bottombar için düzenleme */
.navbar.fixed-top, .navbar.fixed-bottom {
    margin-left: 250px;
    width: calc(100% - 250px);
    left: 0;
}

/* Footer içindeki merkezleme için */
.navbar.fixed-bottom .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.navbar.fixed-bottom .progress-container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    max-width: 500px;
    display: flex;
    justify-content: center;
}

.navbar.fixed-bottom .btn {
    z-index: 1;
}

/* Footer için düzenleme */
footer.bg-warning {
    margin-left: 250px;
    width: calc(100% - 250px);
}

/* Mobil uyumluluk için */
@media (max-width: 768px) {
    .yonetim-menu {
        width: 100%;
        height: auto;
        position: relative;
    }
    
    .content {
        margin-left: 0;
        width: 100%;
    }
    
    .navbar.fixed-top, .navbar.fixed-bottom {
        margin-left: 0;
        width: 100%;
    }
    
    .menu-items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .menu-item {
        padding: 10px 15px;
    }
    
    footer.bg-warning {
        margin-left: 0;
        width: 100%;
    }
}

/* Aktif sayfa için stil */
.menu-item.active {
    background-color: #c48400;
    color: #fff;
    font-weight: bold;
} 