
        .tslco-frontend-earnings {
            margin: 20px 0;
            padding: 20px;
            background: #f9f9f9;
            border-radius: 5px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }
        
        .tslco-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
        }
        
        .tslco-table th,
        .tslco-table td {
            padding: 12px;
            border: 1px solid #ddd;
            text-align: left;
        }
        
        .tslco-table th {
            background: #e5e5e5;
            font-weight: bold;
        }
        
        .tslco-table tr:nth-child(even) {
            background: #f2f2f2;
        }
        
        .tslco-filter-form {
            margin-bottom: 20px;
            padding: 15px;
            background: #fff;
            border-radius: 5px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }
        
        .tslco-filter-fields {
            display: flex;
            gap: 15px;
            align-items: flex-end;
            flex-wrap: wrap;
        }
        
        .tslco-filter-field {
            flex: 1;
            min-width: 200px;
        }
        
        .tslco-filter-field label {
            display: block;
            margin-bottom: 5px;
            font-weight: bold;
        }
        
        .tslco-filter-field input {
            width: 100%;
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 4px;
        }
        
        .tslco-filter-btn {
            padding: 8px 15px;
            background: #0073aa;
            color: #fff;
            border: none;
            border-radius: 4px;
            cursor: pointer;
        }
        
        .tslco-filter-btn:hover {
            background: #005a87;
        }
        
        .tslco-error {
            padding: 10px;
            background: #ffdede;
            color: #d63638;
            border: 1px solid #d63638;
            border-radius: 4px;
            margin: 10px 0;
        }
        
        @media (max-width: 768px) {
            .tslco-filter-fields {
                flex-direction: column;
            }
            
            .tslco-filter-field {
                width: 100%;
            }
            
            .tslco-table {
                font-size: 14px;
            }
            
            .tslco-table th,
            .tslco-table td {
                padding: 8px;
            }
        }
    