:root {
    --sidebar-width: 280px;
}

/* СТРУКТУРА САЙДБАРА */
#sidebar {
    width: var(--sidebar-width);
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

#sidebar-content {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-bottom: 80px;
}

#sidebar-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: var(--sidebar-width);
    padding: 1rem;
    z-index: 100;
}

#main-content {
    padding-left: var(--sidebar-width);
}

/* НАВИГАЦИЯ */
.nav-systems {
    padding-left: 0.5rem;
}

.nav-link {
    padding: 0.75rem 1rem !important;
    transition: all 0.25s;
}

.nav-link:hover {
    transform: translateX(5px);
}

/* ОФОРМЛЕНИЕ АКТИВНОЙ ССЫЛКИ */
.nav-link.active {
    box-shadow: 0 4px 10px rgba(93, 138, 102, 0.3) !important;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */
@media (max-width: 767.98px) {
    #sidebar {
        transform: translateX(-100%);
        position: fixed;
        z-index: 1050;
        height: 100vh;
        transition: transform 0.3s ease;
    }
    
    #sidebar.show {
        transform: translateX(0);
    }
    
    #sidebar-footer {
        width: 100%;
        left: 0;
    }
    
    #main-content {
        padding-left: 0;
    }
    
    #sidebar.show::after {
        content: '';
        position: fixed;
        top: 0;
        left: var(--sidebar-width);
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }
}

/* СКРОЛЛБАР */
#sidebar-content::-webkit-scrollbar {
    width: 6px;
}

#sidebar-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

#sidebar-content::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

#sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}