/* Private Layout Responsive Styles */

/* Mobile sidebar styling */
@media (max-width: 767.98px) {
    .sidebar {
        width: 100% !important;
        min-width: 100% !important;
        max-height: 200px;
        border-right: none !important;
        border-bottom: 1px solid #dee2e6;
    }
    
    .admin-layout {
        flex-direction: column !important;
    }
}

/* Desktop sidebar styling */
@media (min-width: 768px) {
    .sidebar {
        width: 300px !important;
        min-width: 300px !important;
    }
    
    .admin-layout {
        flex-direction: row !important;
    }
}