  .audit-container {
            background-color: #fff;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            padding: 25px;
            margin-top: 20px;
        }
        
        .audit-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .audit-title {
            color: #2c3e50;
            font-size: 1.8rem;
            font-weight: 600;
            margin: 0;
        }
        
        .audit-actions {
            display: flex;
            gap: 10px;
        }
        
        .btn-audit {
            padding: 8px 16px;
            border-radius: 6px;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.2s;
        }
        
        .btn-filter {
            background-color: #f8f9fa;
            border: 1px solid #dee2e6;
            color: #495057;
        }
        
        .btn-export {
            background-color: #28a745;
            border: 1px solid #28a745;
            color: white;
        }
        
        .btn-filter:hover {
            background-color: #e9ecef;
        }
        
        .btn-export:hover {
            background-color: #218838;
            transform: translateY(-1px);
        }
        
        .filters-section {
            background-color: #f8fafc;
            border-radius: 8px;
            padding: 20px;
            margin-bottom: 25px;
            border: 1px solid #e9ecef;
        }
        
        .filter-row {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
            margin-bottom: 15px;
        }
        
        .filter-group {
            display: flex;
            flex-direction: column;
        }
        
        .filter-label {
            font-weight: 500;
            margin-bottom: 6px;
            color: #495057;
            font-size: 0.9rem;
        }
        
        .filter-input, .filter-select {
            padding: 10px 12px;
            border: 1px solid #ced4da;
            border-radius: 6px;
            font-size: 0.95rem;
            transition: border-color 0.2s;
        }
        
        .filter-input:focus, .filter-select:focus {
            border-color: #80bdff;
            outline: 0;
            box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
        }
        
        .filter-actions {
            display: flex;
            justify-content: flex-end;
            gap: 10px;
            margin-top: 10px;
        }
        
        .btn-apply {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 8px 20px;
        }
        
        .btn-reset {
            background-color: #6c757d;
            color: white;
            border: none;
            padding: 8px 20px;
        }
        
        .audit-table-container {
            overflow-x: auto;
            border-radius: 8px;
            border: 1px solid #e9ecef;
        }
        
        .audit-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 1000px;
        }
        
        .audit-table thead {
            background-color: #f1f5f9;
        }
        
        .audit-table th {
            padding: 16px 12px;
            text-align: left;
            font-weight: 600;
            color: #2c3e50;
            border-bottom: 2px solid #dee2e6;
            white-space: nowrap;
        }
        
        .audit-table td {
            padding: 14px 12px;
            border-bottom: 1px solid #e9ecef;
            color: #495057;
            vertical-align: top;
        }
        
        .audit-table tbody tr {
            transition: background-color 0.15s;
        }
        
        .audit-table tbody tr:hover {
            background-color: #f8fafc;
        }
        
        .user-cell {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        
        .user-avatar {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background-color: #4dabf7;
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        .action-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .action-create {
            background-color: #d4edda;
            color: #155724;
        }
        
        .action-update {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .action-delete {
            background-color: #f8d7da;
            color: #721c24;
        }
        
        .action-view {
            background-color: #cce5ff;
            color: #004085;
        }
        
        .module-badge {
            display: inline-block;
            padding: 4px 10px;
            border-radius: 6px;
            background-color: #e9ecef;
            color: #495057;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .description-cell {
            max-width: 300px;
            word-wrap: break-word;
        }
        
        .ip-cell {
            font-family: 'Courier New', monospace;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        .device-cell {
            font-size: 0.85rem;
            color: #6c757d;
        }
        
        .date-cell {
            white-space: nowrap;
            font-size: 0.9rem;
        }
        
        .empty-state {
            text-align: center;
            padding: 60px 20px;
            color: #6c757d;
        }
        
        .empty-icon {
            font-size: 3rem;
            color: #dee2e6;
            margin-bottom: 15px;
        }
        
        .empty-text {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }
        
        .pagination-container {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .pagination {
            display: flex;
            list-style: none;
            padding: 0;
            margin: 0;
            gap: 5px;
        }
        
        .page-item.active .page-link {
            background-color: #007bff;
            border-color: #007bff;
            color: white;
        }
        
        .page-link {
            padding: 8px 14px;
            border: 1px solid #dee2e6;
            border-radius: 6px;
            color: #007bff;
            text-decoration: none;
            transition: all 0.2s;
        }
        
        .page-link:hover {
            background-color: #f8f9fa;
        }
        
        .summary-info {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            padding: 12px 16px;
            background-color: #f8fafc;
            border-radius: 6px;
            font-size: 0.9rem;
            color: #6c757d;
        }
        
        @media (max-width: 768px) {
            .audit-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            
            .audit-actions {
                width: 100%;
                justify-content: flex-start;
            }
            
            .filter-row {
                grid-template-columns: 1fr;
            }
            
            .summary-info {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
        }