/* Mobile Responsive Styles */
@media (max-width: 768px) {
    /* Sidebar */
    .sidebar {
        position: fixed;
        top: 0;
        left: -250px;
        width: 250px;
        height: 100vh;
        z-index: 1000;
        transition: all 0.3s;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar-sticky {
        position: relative;
        top: 0;
        height: calc(100vh - 56px);
        padding-top: 0.5rem;
        overflow-x: hidden;
        overflow-y: auto;
    }
    
    /* Main Content */
    .col-md-10 {
        margin-left: 0;
        width: 100%;
    }
    
    /* Cards */
    .card-body {
        padding: 0.75rem;
    }
    
    .table-responsive {
        border: none;
    }
    
    /* Tables */
    .table {
        font-size: 0.75rem;
    }
    
    .table th, .table td {
        padding: 0.5rem;
    }
    
    /* Forms */
    .form-row .form-group {
        margin-bottom: 1rem;
    }
    
    /* Buttons */
    .btn {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    /* Modals */
    .modal-dialog {
        margin: 1rem;
    }
    
    /* Dashboard Stats */
    .card-body .row.no-gutters {
        flex-direction: column;
    }
    
    .card-body .col-auto {
        margin-top: 0.5rem;
    }
}