/* Sidebar Base Styles */
.sidebar {
    position: fixed;
    right: -100%;
    top: 0;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 10;
    display: flex;
    flex-direction: column;
}

.sidebar.active {
    right: 0;
}

.sidebar-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f8f9fa;
}

.sidebar-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #666;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    width: 35px;
    height: 35px;
    font-size: 20px;
}

.sidebar-close:hover {
    background: #e9ecef;
    color: #333;
}

.sidebar-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sidebar-body {
    padding: 20px;
    flex: 1;
    overflow-y: auto;
}

.sidebar-tail {
    display: none;
}

.test-route-link {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
    transition: background-color 0.2s ease;
}

.test-route-link:hover {
    background: #0056b3;
}

/* Desktop and Tablet Styles */
@media (min-width: 768px) {
    .sidebar {
        width: 400px;
        right: -400px;
        top: 64px;
        height: calc(100vh - 64px);
        border-left: 1px solid #dee2e6;
    }
    
    .sidebar.active {
        right: 0;
    }
    
    /* Улучшенные стили для десктопа и планшета */
    .sidebar-header {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        border-bottom: 2px solid #dee2e6;
    }
    
    .sidebar-title {
        font-size: 20px;
    }
    
    .sidebar-body {
        padding: 25px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .sidebar {
        width: 100%;
        height: 50vh; /* Высота до середины экрана */
        right: auto;
        left: 0;
        bottom: -50vh; /* Изначально скрыт снизу */
        top: auto;
        border-top: 1px solid #dee2e6;
        border-radius: 15px 15px 0 0; /* Закругленные верхние углы */
        transition: bottom 0.3s ease; /* Анимация снизу вверх */
    }
    
    .sidebar.active {
        bottom: 0; /* Поднимается до нижней части экрана */
    }
    
    /* Частично свернутое состояние для мобайла */
    .sidebar.collapsed-auto {
        bottom: -calc(50vh - 60px); /* Показываем только заголовок */
    }

    .sidebar.minimized {
        height: 35vh;
    }
    
    .sidebar.collapsed-auto .sidebar-tail {
        display: flex;
    }
    
    .sidebar-tail:hover {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .sidebar-handle {
        width: 30px;
        height: 4px;
        background: #6c757d;
        border-radius: 2px;
        transition: all 0.2s ease;
    }
    
    .sidebar-tail:hover .sidebar-handle {
        background: #495057;
        height: 5px;
    }
    
    /* Мобильные стили для контента */
    .sidebar-title {
        font-size: 16px;
    }
    
    .sidebar-header {
        padding: 15px;
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    }
    
    .sidebar-body {
        padding: 15px;
    }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
    .sidebar-header {
        padding: 12px;
    }
    
    .sidebar-body {
        padding: 12px;
    }
    
    .sidebar-title {
        font-size: 14px;
    }
} 