    <style>
        /* Estilos para a tabela */
        
        /* Linha de filtros */
        .filter-row {
            background-color: #e9ecef;
        }
        
        .filter-row td {
            padding: 8px 4px !important;
            border-bottom: 2px solid #007bff;
        }
        
        .filter-select {
            width: 100%;
            padding: 6px;
            border: 1px solid #ced4da;
            border-radius: 4px;
            background-color: white;
            font-size: 12px;
            cursor: pointer;
            transition: border-color 0.3s;
        }
        
        .filter-select:focus {
            border-color: #007bff;
            outline: none;
            box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
        }
        
        .filter-select option {
            padding: 4px;
        }
        
        /* Select para colunas sem filtro */
        .no-filter {
            background-color: #f8f9fa;
            border: none;
            cursor: not-allowed;
        }
        
        .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
            background-color: #f8f9fa;
        }
        
        .wp-block-table.is-style-stripes tbody tr:hover {
            background-color: #e9ecef;
        }
        
        /* Indicador de filtros ativos */
        .filter-info {
            margin: 15px 0;
            padding: 12px;
            background-color: #d1ecf1;
            border: 1px solid #bee5eb;
            border-radius: 4px;
            color: #0c5460;
            display: none;
        }
        
        .active-filters {
            margin-top: 10px;
            font-size: 14px;
        }
        
        .filter-tag {
            display: inline-block;
            background-color: #007bff;
            color: white;
            padding: 4px 8px;
            margin: 2px;
            border-radius: 12px;
            font-size: 11px;
        }
        
        .clear-filters-btn {
            background-color: #dc3545;
            color: white;
            border: none;
            padding: 6px 12px;
            border-radius: 4px;
            cursor: pointer;
            font-size: 12px;
            margin-left: 10px;
        }
        
        .clear-filters-btn:hover {
            background-color: #c82333;
        }
        
        /* Responsividade */
        @media (max-width: 768px) {
            .wp-block-table.is-style-stripes th,
            .wp-block-table.is-style-stripes td {
                padding: 8px 4px;
                font-size: 12px;
            }
            
            .filter-select {
                font-size: 11px;
                padding: 4px;
            }
        }
        
        /* Estilo para linhas ocultas */
        .hidden-row {
            display: none !important;
        }
        
        /* Contador de resultados */
        .results-counter {
            font-weight: bold;
            color: #007bff;
        }
    </style>