.status-badge {
        padding: 0.35rem 0.65rem;
        border-radius: 0.375rem;
        font-size: 0.875rem;
        font-weight: 500;
    }
    
    .status-sucesso {
        background-color: #d1fae5;
        color: #065f46;
    }
    
    .status-falha {
        background-color: #fee2e2;
        color: #991b1b;
    }
    
    .status-pendente {
        background-color: #fef3c7;
        color: #92400e;
    }
    
    .card-processo {
        transition: all 0.3s ease;
        border: 1px solid #e5e7eb;
    }
    
    .card-processo:hover {
        box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
        transform: translateY(-2px);
    }
    
    .filter-section {
        background-color: #f9fafb;
        border-radius: 0.5rem;
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .table-responsive {
        border-radius: 0.5rem;
        overflow: hidden;
    }
    
    .btn-filtrar {
        background-color: #3b82f6;
        color: white;
        border: none;
    }
    
    .btn-filtrar:hover {
        background-color: #2563eb;
        color: white;
    }
    
    .btn-limpar {
        background-color: #6b7280;
        color: white;
        border: none;
    }
    
    .btn-limpar:hover {
        background-color: #4b5563;
        color: white;
    }