/* ====== ЛЕВАЯ БОКОВАЯ ПАНЕЛЬ ПТУ ====== */
.left-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 150px; /* Ширина левой панели */
    height: 100vh;
    background: linear-gradient(180deg, #e3f2fd, #bbdefb); /* Светло-голубой градиент */
    z-index: 99;
    overflow: hidden;
    border-right: 2px solid #64b5f6;
    box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}

.left-sidebar-header {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 15px;
    text-align: center;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.left-sidebar-content {
    padding: 15px;
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.left-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-sidebar-list li {
    margin-bottom: 10px;
}

.left-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1565c0; /* Темно-синий цвет текста */
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.7); /* Полупрозрачный белый фон */
}

.left-sidebar-list a:hover {
    background: linear-gradient(135deg, #bbdefb, #90caf9); /* Голубой градиент при наведении */
    color: #0d47a1;
    transform: translateX(3px);
    border-color: #64b5f6;
    box-shadow: 0 2px 8px rgba(33,150,243,0.2);
}

.left-sidebar-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #1976d2;
}

/* ====== ПРАВАЯ БОКОВАЯ ПАНЕЛЬ ПТУ ====== */
.right-sidebar {
    position: fixed;
    right: 0;
    top: 0;
    width: 150px; /* Ширина правой панели */
    height: 100vh;
    background: linear-gradient(180deg, #e3f2fd, #bbdefb); /* Светло-голубой градиент */
    z-index: 99;
    overflow: hidden;
    border-left: 2px solid #64b5f6;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
}

.right-sidebar-header {
    background: linear-gradient(135deg, #1a237e, #283593);
    color: white;
    padding: 15px;
    text-align: center;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-sidebar-content {
    padding: 15px;
    height: calc(100vh - 140px);
    overflow-y: auto;
}

.right-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.right-sidebar-list li {
    margin-bottom: 10px;
}

.right-sidebar-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1565c0; /* Темно-синий цвет текста */
    text-decoration: none;
    padding: 10px 12px;
    border-radius: 6px;
    transition: all 0.3s;
    font-weight: 500;
    font-size: 13px;
    border: 1px solid transparent;
    background: rgba(255, 255, 255, 0.7); /* Полупрозрачный белый фон */
}

.right-sidebar-list a:hover {
    background: linear-gradient(135deg, #bbdefb, #90caf9); /* Голубой градиент при наведении */
    color: #0d47a1;
    transform: translateX(-3px); /* Направление для правой панели */
    border-color: #64b5f6;
    box-shadow: 0 2px 8px rgba(33,150,243,0.2);
}

.right-sidebar-icon {
    font-size: 16px;
    width: 20px;
    text-align: center;
    color: #1976d2;
}

@media (max-width: 1200px) {
    .left-sidebar {
        position: fixed;
        left: -160px;
        top: 0;
        width: 150px;
        height: 100vh;
        transform: none;
        transition: left 0.3s ease;
        border-radius: 0;
        border-right: 2px solid #64b5f6;
        border-left: none;
    }
    .left-sidebar.active {
        left: 0;
    }
    
    .right-sidebar {
        position: fixed;
        right: -160px;
        top: 0;
        width: 150px;
        height: 100vh;
        transform: none;
        transition: right 0.3s ease;
        border-radius: 0;
        border-left: 2px solid #64b5f6;
        border-right: none;
    }
    .right-sidebar.active {
        right: 0;
    }
}

/* Стили для скроллбара */
.left-sidebar-content::-webkit-scrollbar,
.right-sidebar-content::-webkit-scrollbar {
    width: 5px;
}

.left-sidebar-content::-webkit-scrollbar-track,
.right-sidebar-content::-webkit-scrollbar-track {
    background: #e3f2fd;
    border-radius: 8px;
}

.left-sidebar-content::-webkit-scrollbar-thumb,
.right-sidebar-content::-webkit-scrollbar-thumb {
    background: #64b5f6;
    border-radius: 8px;
}

.left-sidebar-content::-webkit-scrollbar-thumb:hover,
.right-sidebar-content::-webkit-scrollbar-thumb:hover {
    background: #42a5f5;
}