
        .accounting-section {
            padding: 40px 0;
            background-color: #f8f9fa;
        }
        
        .accounting-section h2 {
            text-align: center;
            margin-bottom: 30px;
            color: #333;
            font-weight: bold;
        }
        
        .accounting-table-div {
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        table {
            width: 100%;
            border-collapse: collapse;
        }
        
        th {
            background-color: #4a6572;
            color: white;
            padding: 15px;
            text-align: right;
            font-weight: bold;
        }
        
        td {
            padding: 12px 15px;
            border-bottom: 1px solid #eee;
            text-align: right;
        }
        
        tr:hover {
            background-color: #f5f5f5;
        }
        
        .description {
            max-width: 250px;
            word-wrap: break-word;
        }
        
        .amount.positive {
            color: #28a745;
            font-weight: bold;
        }
        
        .amount.negative {
            color: #dc3545;
            font-weight: bold;
        }
        
        .badge {
            padding: 5px 10px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: bold;
        }
        
        .badge-success {
            background-color: #d4edda;
            color: #155724;
        }
        
        .badge-danger {
            background-color: #f8d7da;
            color: #721c24;
        }
        
        .no-data {
            text-align: center;
            padding: 40px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .no-data p {
            color: #6c757d;
            font-size: 18px;
            margin: 0;
        }
        
        @media (max-width: 768px) {
            .accounting-table-div {
                overflow-x: auto;
            }
            
            accounting-table {
                min-width: 800px;
            }
            
            th, td {
                padding: 8px 10px;
                font-size: 14px;
            }
        }