﻿
/* Menü kapalıysa gizli */
#sidebarMenu {
    position: fixed;
    top: 150px;
    left: 0;
    width: 280px;
    height: calc(100% - 80px);
    background-color: #f8f9fa;
    padding: 10px;
    border-right: 1px solid #ccc;
    z-index: 1030;
    transition: transform 0.3s ease;
    transform: translateX(-100%);
}

    #sidebarMenu.active {
        transform: translateX(0);
    }

.toggle-menu-btn {
    position: fixed;
    top: 80px;
    left: 10px;
    z-index: 1050;
}

#sidebarMenu {
    max-height: calc(100vh - 100px); /* ekran yüksekliğinden bir miktar düş */
    overflow-y: auto;
}